// JavaScript Document
function OpenPopup(strUrl,intWith,intHeight,strScroll,strMenu,strLocat,strResize)
	{  
     	window.open(strUrl,"","width="+intWith+", height="+intHeight+", scrollbars="+strScroll+", menubar="+strMenu+", location="+strLocat+", resizable="+strResize);	
	}
