// JavaScript Document
function newWindow(charhtm) {
		
		charWindow = window.open(charhtm,
			'charWin', "width=600,height=500,left=0, top=0,location=0,scrollbars=1,menubar=0,resizable=1,status=1,toolbar=1")
		charWindow.focus ()
		
		}

function popupWin() {
text =  "<html>\n<head>\n<title>AN AWARENESS MESSAGE BY NADJA LEE</title>\n<body bgcolor='#000000'>\n";
text +="<center>\n"
text += "<img src='img/makelove.gif'>\n<p>";
text += "<font color='#FFFFFF' size='1' face='Verdana'><b>+ Brought To You By Webmistress of Steel & Silk + </b>"
text += "</p><p><i>This message will automatically close in 10 seconds</i></font>"
text += "</p></center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 0000); 		// delay 3 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=400,height=230,top=250,left=200');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 8000);	// delay 5 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
