function ShowModalForm(urlPage,strSetting)
{
    if (strSetting==null)
    {
    	strSetting="dialogHeight:400px;dialogWidth:600px;status:no;help:no;resizable:yes;scroll:no;";
    }
    var oArguments =null;
    var oAction = window.showModalDialog(urlPage,oArguments,strSetting);
    return oAction;
}

function ShowForm(urlPage,strSetting)
{
	if (strSetting==null)
    {
    	strSetting="Height=600,Width=800,toolbar=1,menubar=1,resizable=1,location=1";
    }
    strSetting="Height=600,Width=800,toolbar=1,menubar=1,resizable=1,location=1,scrollbars=1";
    var remote;
	remote = window.open(urlPage, '', strSetting);
	
    
}


