// JavaScript Document


function windowProp() {
newWindow = window.open('inpop.html','newWin','width=250,height=300,top=150,left=530');
setTimeout('closeWin(newWindow)', 500000);	// delay 5 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}