<!--
function opWillWindow(url)
{
window.open(url,"Will","top=100;left=200;width=800;height=600;status=no;toolbar=no;scrollbars=yes");
}

function opSendWindow(url)
{
window.open(url,"send","top=100;left=200;width=800;height=600;status=no;toolbar=no;scrollbars=no");
}

function opVideo(url)
{
window.open(url,"video","top=100;left=200;width=386;height=371;status=no;toolbar=no;scrollbars=no");
}
function IndustryDialog()
{
	var curValue = vIndustryId.value;
	var reValue = window.showModalDialog("/inc/selectIndustry.aspx?currentValue="+curValue,"industryWindow","dialogHeight:400px;dialogWidth:640px;dialogTop:200px;dialogLeft:200px;resizable:Yes;status:no");
	if(typeof(reValue) != "undefined" && reValue != "")
	{
		var str = reValue.substring(reValue.indexOf("|")+1);
		if(str.length > 10)
		   str = str.substring(0,10);
		vTxtIndustryId.value = str;
		vIndustryId.value = reValue.substring(0,reValue.indexOf("|"));
	}
}
function opNotify(url)
{
window.open(url,"notify","top=100;left=200;width=386;height=371;status=no;toolbar=no;scrollbars=no");
}
function opMEmployerLevelSet(url)
{
window.open(url,"setLevel","Height=600px;Width=400px;Top=200px;Left=200px;resizable=Yes;status=Yes");
}
function opColorDialog(url,param)
{
   if(document.getElementById(param).value == "")
   {
      alert("ÇëÏÈÊäÈëÄÚÈÝ£¡");
      document.getElementById(param).focus();
      return false;
   }
   var rValue = window.showModalDialog(url,"colorWindow","dialogHeight:180px;dialogWidth:320px;dialogTop:200px;dialogLeft:200px;resizable:Yes;status:no");
   if(typeof(rValue) != "undefined" && rValue != "")
   {
      var strStart = "<font color='"+ rValue +"'>";
      var strEnd   = "</font>";
      document.getElementById(param).value = strStart + document.getElementById(param).value + strEnd;
   }
}
function opUploadDialog(url,param)
{
  var rValue = window.showModalDialog(url,"uploadWindow","dialogHeight:180px;dialogWidth:320px;dialogTop:200px;dialogLeft:200px;resizable:Yes;status:no");
   if(typeof(rValue) != "undefined" && rValue != "")
   {

      document.getElementById(param).value = rValue;
   }
}
function openWillWin(employeeId)
{
	var rValue = window.showModalDialog("/employer/ChoosePos.aspx?employeeId="+employeeId,"uploadWindow","dialogHeight:400px;dialogWidth:320px;dialogTop:200px;dialogLeft:200px;resizable:No;status:no");
}
-->