
function InitFTP(fp) {	
	var fpath = "http://mail.inteprod.com/ftp/ftp.asp?fldr=" + fp	
	//alert(fpath);
	window.open(fpath, 'Inteprod', 'left=340,top=80,width=700,height=700,scrollbars,resizable');
}

function popSurv(url) {	
	//alert(url);
	window.open(url, 'Inteprod', 'left=240,top=80,width=500,height=240,scrollbars,resizable');
	
}

function popup(url,name,h,w) {
  window.open(url, name, 'left=340,top=80,width=' + w + ',height=' + h + ',scrollbars,toolbar');
}

function sendValue(s,fld) {
	var selvalue = s.value;
	window.opener.document.form1.fld.value = selvalue;
	window.close();
}


