
function launchWin(url, name, newWidth, newHeight,scroll) {

         newWin = open(url,name,"scrollbars=" + scroll + ",resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);

}

function launchFeature(url, name, newWidth, newHeight,scroll,resizeable) {
	newWin = open(url,name,"scrollbars=" + scroll + ",resizable=" + resizeable +",status=no,height=" + newHeight + ",width=" + newWidth);

}
function popWin(url, name, width, height, menubar, scrollbars, locationbar, directories, statusbar, resizable, toolbar) { 
	str  = ""; 
	str += "width=" + width + ","; 
	str += "height=" + height + ","; 
	str += "menubar=" + menubar +",";
	str += "scrollbars=" + scrollbars + ",";
	str += "location=" + locationbar +",";
	str += "directories=" + directories +",";
	str += "status=" + statusbar +",";  
	str += "resizable=" + resizable +","; 
	str += "toolbar=" + toolbar;
	//str += "top=" + top + ","; 
	//str += "left=" + left; 
	window.open( url, name, str );
}