// JavaScript Document
		// <![CDATA[
			function openWindow(url,width,height,options,name) {
				width = width ? width : 700;
				height = height ? height : 420;
				options = options ? options : 'resizable=no';
				name = name ? name : 'openWindow';
				window.open(
					url,
					name,
					'screenX='+(screen.width-width)/2+',screenY='+(screen.height-height)/2+',width='+width+',height='+height+','+options
				)
			}
// ]]>
