

function open_window(url) {
	
	var args = "width=" + 350 + ",height=" + 400 + ",scrollbars=yes";

	var attributes='';
		args += (attributes.indexOf("resize") != -1) ? ",resizable=yes" : ",resizeable=no";
		args += (attributes.indexOf("tool") != -1) ? ",toolbar=yes" : ",toolbar=no";
		args += (attributes.indexOf("menu") != -1) ? ",menubar=yes" : ",menubar=no";
		args += (attributes.indexOf("loc") != -1) ? ",location=yes" : ",location=no";
		args += (attributes.indexOf("status") != -1) ? ",status=yes" : ",status=no";
	

	windowobject = window.open(url, "win", args);

	if (windowobject) {
		windowobject.focus();
	}

	
//mywin = window.open(url,"win",'toolbar=0,location=0,scrollbars=1,width=350,height=400')
}

function open_window1(url) {
	
	var args = "width=" + 500 + ",height=" + 500 + ",scrollbars=yes";

	var attributes='';
		args += (attributes.indexOf("resize") != -1) ? ",resizable=yes" : ",resizeable=no";
		args += (attributes.indexOf("tool") != -1) ? ",toolbar=yes" : ",toolbar=no";
		args += (attributes.indexOf("menu") != -1) ? ",menubar=yes" : ",menubar=no";
		args += (attributes.indexOf("loc") != -1) ? ",location=yes" : ",location=no";
		args += (attributes.indexOf("status") != -1) ? ",status=yes" : ",status=no";
	

	windowobject = window.open(url, "win", args);

	if (windowobject) {
		windowobject.focus();
	}

	
//mywin = window.open(url,"win",'toolbar=0,location=0,scrollbars=1,width=350,height=400')
}