
var newwin;

function openSoon (value) {
	newwin = window.open(value,"show","width=500,height=370,");
	newwin.focus();
}

