function openWindow(myURL,myTarget,myWidth,myHeight,myScrollbars,myResizable)
{
	window.open(myURL,myTarget,"toolbar=nolocation=no,directories=no,status=no,menubar=no,scrollbars=" + myScrollbars + ",resizable=" + myResizable + ",width=" + myWidth + ",height=" + myHeight);
}

function openWindowAll(myURL,myTarget,myWidth,myHeight,myScrollbars,myResizable)
{
	window.open(myURL,myTarget,"toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=" + myScrollbars + ",resizable=" + myResizable + ",width=" + myWidth + ",height=" + myHeight);
}
