// JavaScript Document
function openWin(what){
	nwin=window.open(what,"myParent","toolbar=no,location=no,resizable=no, scrollbars=no, width=400,height=400,left=100,top=100, ")
}

function openInParent(what){
	opener.location.href = what;
}

