//Function for window sizing control--OpenWindow.js

function openwindow(URL, width, height) {
var x
if(!x){

x=window.open(URL, "target", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + width + ",height=" + height)

} 
return x
}

//Function for window sizing control with scroll bars

function openwindow2(URL, width, height) {
var x
if(!x){

x=window.open(URL, "target", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height)

} 
return x
}