function viewWin(wURL){
	if(opener){
		opener.location.href = wURL;
	}
	else{
		newWin = window.open(wURL,"newWindow","width=800,height=600,toolbar=1,location=1,scrollbars=1,status=1");
	}
}