
function openwinclose() {
newWindow = window.open('http://www.regnow.com/softsell/visitor.cgi?affiliate=21331&action=site&vendor=2658','newWin','toolbar=yes,scrollbars=yes,resizable=yes,width=700,height=512');
newWindow.blur();
setTimeout('closeWin(newWindow)', 6000);	// delay 5 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
