function newWin(url,name,w,h,scroll,resize,menubar,location,toolbar,status)
{
	if (w == '0')
	{
		w = screen.availWidth-100;
	}

	if (h == '0')
	{
		h = screen.availHeight-100;
	}

  var popup = null;
  l = (screen.availWidth-10 - w) / 2;
  t = (screen.availHeight-20 - h) / 2;

  features = "width="+w+",height="+h+",left="+l+",top="+t;
  features += ",screenX="+l+",screenY="+t;
  features += ",scrollbars="+scroll+",resizable="+resize+",location="+location+"";
  features += ",menubar="+menubar+",toolbar="+toolbar+",status="+status+"";

 	popup =  window.open(url+'?Url='+document.referrer, name, features);
}

function cleartextfield(f_id, f_value) {
	if(document.getElementById(f_id).value == f_value) {
		document.getElementById(f_id).value = "";
	}
}

function filltextfield(f_id,  f_value) {
	if(document.getElementById(f_id).value == "") {
		document.getElementById(f_id).value = f_value;
	}
}

function SendOfferte(url,name,w,h,scroll,resize,menubar,location,toolbar,status)
{
	if (w == '0')
	{
		w = screen.availWidth-100;
	}

	if (h == '0')
	{
		h = screen.availHeight-100;
	}

  var popup = null;
  l = (screen.availWidth-10 - w) / 2;
  t = (screen.availHeight-20 - h) / 2;

  features = "width="+w+",height="+h+",left="+l+",top="+t;
  features += ",screenX="+l+",screenY="+t;
  features += ",scrollbars="+scroll+",resizable="+resize+",location="+location+"";
  features += ",menubar="+menubar+",toolbar="+toolbar+",status="+status+"";

 	popup =  window.open(url, name, features);
}