
function open_main_window(url)
{ 
new_window = window.open(url,'main_window','toolbar=0,menubar=0,resizable=0,dependent=0,status=0,width=780,height=518,left=0,top=0')
new_window.focus();
}
// New window attributes
// url - the variable for the url of the page in the new window
// that is passed by placing it single-quoted in either the link or form
// window_name - the name of the new window being opened
// width - width of the new window in pixels
// height - height of the new window in pixels
// top - the new widow top will appear xx number of pixels from the top of the screen
// left - the new widow left margin will appear xx number of pixels from the left of the screen

// The following attributes will suppress the respective window elements
// when the value is set to zero or if omitted. When listed or equal to one
// the window attribute will appear
// toolbar,menubar,resizable,dependent,status


function open_slide_window(url)
{ 
new_window = window.open(url,'slide_window','toolbar=0,menubar=0,resizable=0,dependent=0,status=0,width=780,height=529,left=0,top=0')
}
function quick_window(url)
{ 
new_window = window.open(url,'quick_acess','toolbar=no,scrollbars=0,location=no,dependent=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,fullscreen=3,width=312,height=318,left=461,top=68')
}
// New window attributes
// url - the variable for the url of the page in the new window
// that is passed by placing it single-quoted in either the link or form
// window_name - the name of the new window being opened
// width - width of the new window in pixels
// height - height of the new window in pixels
// top - the new widow top will appear xx number of pixels from the top of the screen
// left - the new widow left margin will appear xx number of pixels from the left of the screen

// The following attributes will suppress the respective window elements
// when the value is set to zero or if omitted. When listed or equal to one
// the window attribute will appear
// toolbar,menubar,resizable,dependent,status
