<!-- BEGIN
//Open new window script
 function openPopup(href, name, width, height, menu, status, scroll, loc, resize, title, toolbar){
	 var attributes = '';
	 attributes = attributes + ',width=' + width;
	 attributes = attributes + ',height=' + height;
	 attributes = attributes + ',left=' +(screen.width - width) / 2;
	 attributes = attributes + ',top=' +(screen.height - height) / 2;
	 attributes = attributes + ',menubar=' + (menu==1?'yes':'no');
	 attributes = attributes + ',status=' + (status==1?'yes':'no');
	 attributes = attributes + ',scrollbars=' + (scroll==1?'yes':'no');
	 attributes = attributes + ',location=' + (loc==1?'yes':'no');
	 attributes = attributes + ',titlebar=' + (title==1?'yes':'no');
	 attributes = attributes + ',toolbar=' + (toolbar==1?'yes':'no');
	 attributes = attributes + ',resizable=' + (resize==1?'yes':'no');
	 attributes = attributes.substring(1,attributes.length);
	 var Popup = window.open(href, name, attributes)
}
// END -->

