/***********************************************
* Pop-up site script
* http://www.yourhtmlsource.com/javascript/popupwindows.html#accessiblepopups
***********************************************/
var newwindow;
function popwindow(url)
{
	newwindow=window.open(url,'name','height=600,width=700,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,menubar=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}
