<!-- hide script from old browsers
// 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
// 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_new_window(url,name)   TEMPLATE CODE
// {
// new_window = window.open(url,name,'toolbar=0,menubar=0,resizable=0,dependent=0,status=0,width=400,height=500,left=25,top=25')
// }

//function open_window_notice(url,name) {
//new_window = window.open(url,name,'width=420,height=400,left=20,top=20')
//}

function close_window() {
window.close()
}

function open_window_notice(url,name,winstring) {
new_window = window.open(url,name,winstring)
}

function open_window_rhi(url,name) {
new_window = window.open(url,name,'width=400,height=500,left=25,top=25')
}

function open_window_giza(url,name) {
new_window = window.open(url,name,'width=550,height=620,left=25,top=25')
}
// end hiding script from old browsers -->
