function winOpen(y,x,url){	var newWindow = window.open(url,"win1","height=" + x + ",width=" + y + ",scrollbars=1,resizable=1");	newWindow.focus();	if(navigator.appVersion.charAt(0)==2){		newWindow = window.open(url,"win1","height=" + x + ",width=" + y + ",scrollbars=1,resizable=1");			newWindow.focus();}	};