<!--

function popitup2() {
	var newwindow2=window.open('','name','height=200,width=150');
	newwindow2.document.write('<html lang="en"><hEAD><TITLE>Popup</TITLE>');
	newwindow2.document.write('<LINK REL="stylesheet" HREF="js.css">');
	newwindow2.document.write('</hEAD><BODY><p>This is once again a popup. This is a long sentence.</p>');
	newwindow2.document.writeln('<p>This is fun.</p>');
	newwindow2.document.write('<p><a href="javascript:alert(self.location.href)">View location</a>.</p>');
	newwindow2.document.write('<p><a href="javascript:self.close()">Close</a> the popup.</p>');
	newwindow2.document.write('</BODY></hTML>');
	newwindow2.document.close();
}


function openWinNav() {
    win2 = window.open("menupopup.html", "Navigation","width=200,height=300,scrollbars=yes,status=no");
}

function myPopup2(url) {
window.open( url, "myWindow", "status=1, height=300, width=200, scrollbars=yes, toolbar=no, locationbar=yes, location=no, directories=no, menubar=no, resizable=no, copyhistory=no" )
}

// -->