function openWin(file,name) {
	var mN = 100
	var sH = screen.height - mN;
	var sW = screen.width - mN;
	
	window.open(file,name,'top='+mN/2+',left='+mN/2+',toolbar=0,status=0,location=0,menubar=1,resizable=1,scrollbars=1,height='+sH+',width='+sW);
	
	return false;
}