function openInNew(url) { 
	var sWidth=screen.width*0.65; 
	var sHeight=screen.height*0.65;
		newWin=window.open(url,'newWin',config='height='+sHeight+',width='+sWidth+',toolbar=no,scrollbars=yes,resizable=yes,status=yes,copyhistory=no,location=no,menubar=no');
	newWin.focus();
	return false;
}