/****************************************************************/
/* Template Scripts - These scripts are constants of the system */

//Function to open pop up window
function winOpener(theURL, winName, width, height) {
  	window.open(theURL,winName,'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,movable=yes, resizable=yes,width='+width+',height='+height);
  	return false
}

var uploaded;
function openUploader() {
	uploaded = 'no_change';
	uploaded = window.showModalDialog('uploader.asp','Uploader','dialogWidth:350px;dialogHeight:250px;');
	addOption(uploaded,uploaded);
	return false;
}


// This func adds <option> element to a <select>
function addOption(elem,text,val) {
	var index = document.forms['products'].pic.options.length;
	document.forms['products'].pic.options[index] = new Option(text,val);
}
