// JavaScript Document



function popitup(url,iHeight,iWidth){
		newwindow=window.open(url,'name','height='+iHeight+',width='+iWidth+',top=80,left=100,scrollbars=yes ,resizable=yes');
		if (window.focus) {newwindow.focus()}
		return false;}


