function openWin(sLoc){
	var openSuccess = window.open(sLoc, '','location=yes,directories=yes,menubar=yes,history=yes,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,width=610,height=700');
	if(!openSuccess){
		window.location = sLoc;
	}
}