/* *****************************



	popup1.js

	

****************************** */



function popup1(sLocation, sWindowName, sWidth, sHeight){

	var setMenubar = "yes";

	var setToolbar = "no";

	var setLocation = "yes";

	var setDirectories = "yes";

	var setStatus = "yes";

	var setScrollbars = "yes";

	var setResizable = "yes";



	var setCondition = "width=" + sWidth + ",height=" + sHeight + ",left=10,top=10,menubar=" + setMenubar + ",toolbar=" + setToolbar + ",location=" + setLocation + ",directories=" + setDirectories + ",status=" + setStatus + ",scrollbars=" + setScrollbars + ",resizable=" + setResizable;

	var setWindow = window.open(sLocation, sWindowName, setCondition);

	setWindow.focus();

	return false;

}
