/* *****************************

	popup.js
	
****************************** */

function popup(sLocation,sWindowName,sWidth,sHeight,sScroll){
	var setMenubar = "no";
	var setToolbar = "no";
	var setLocation = "yes";
	var setDirectories = "no";
	var setStatus = "yes";
	var setResizable = "yes";
	
	var setScrollbars;
	
	if(sScroll == 0){
		setScrollbars = "no";
	}else if(sScroll == 1){
		setScrollbars = "yes";
	}
	

	//var setCondition = "width=" + sWidth + ",height=" + sHeight + ",left=" + sLeft + ",top=" + sTop + ",menubar=" + setMenubar + ",toolbar=" + setToolbar + ",location=" + setLocation + ",directories=" + setDirectories + ",status=" + setStatus + ",scrollbars=" + setScrollbars + ",resizable=" + setResizable;
	
	var setCondition = "width=" + sWidth + ",height=" + sHeight + ",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;
}