// JavaScript Document

function pop13(theUrl,winName,features) {
if (document.layers||document.getElementById) {
	window.open(theUrl, winName, 'toolbar=no, location=no, directories=no, statusbar=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=450, height=250, left=0, top=0, screenX=0, screenY=0');
} else {
	window.open(theUrl, winName);
	}}

