// JavaScript Document

function openFixedWin(url,w,h){
	window.open(url,"","width="+w+",height="+h+",resizable=no,scrollbars=no");
}

function openResizableWindow(url,w,h){
	window.open(url,"","width="+w+",height="+h+",resizable=yes,scrollbars=yes");
}