function LoadToTop() {
	if (top != self) {
		top.location = location;
	}
}

function ChangeLanguage(strLangCode,strLanguage) {
	parent.frames["Main"].location = 'LanguageSelect.aspx?LID=' + strLangCode + '&Lang=' + strLanguage;
}

function ChangeLangFrames() {
	parent.frames["Tool"].location = 'Toolbar.aspx';
	parent.frames["Top"].location = 'Topbar.aspx';
}

function ChangeTopFrame(strTitle, strHelp, strAnchor) {
if(parent.frames["Top"] != null){
	parent.frames["Top"].location = 'Topbar.aspx?title=' + escape(strTitle) + '&help=' + escape(strHelp) + '&anc=' + escape(strAnchor);}
}

function ShowHelpFile(strURL) {
	var remote = window.open(strURL,'Help','width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no,directories=no');
}

function OpenWindow(strURL) {
	var remote = window.open(strURL,'Remote','width=700,height=600,left=10,top=10,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no,directories=no');
}

function previewJob(lngJobID) {

	if(Page=="ASP.RestoreJobs_aspx")
	{
		window.open("JobPreview.asp?ID=" + lngJobID + "&CurrentSite=" + CurrentSite + "&JobStatus=0", "PreviewJob", 'width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no,location=no,directories=no');
	}
	else
	if(Page=="Statistics.aspx")
	{
		window.open("JobPreview.asp?ID=" + lngJobID + "&CurrentSite=" + CurrentSite + "&JobStatus=" + JobStatus, "PreviewJob", 'width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no,location=no,directories=no');
	}	
	else
	if(Page=="AppSummary.aspx") //Exceptions for those pages with DropDown Boxes changing JobStatus within the page
	{
		window.open("JobPreview.asp?ID=" + lngJobID + "&CurrentSite=" + CurrentSite + "&JobStatus=" + JobStatus, "PreviewJob", 'width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no,location=no,directories=no');
	}		
	else	
	{
	// window.open("PreviewJob.aspx?jID=" + lngJobID, "PreviewJob", 'width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no,location=no,directories=no');
 		window.open("JobPreview.asp?ID=" + lngJobID + "&CurrentSite=" + CurrentSite + "&JobStatus=1", "PreviewJob", 'width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no,location=no,directories=no');
	}		
}

function previewForm(EFID) 
{
	var sURL = "eformrender.aspx?CW=1&efid=" + EFID
	window.open(sURL, "PreviewForm", 'width=630,height=460,left=10,top=10,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no,location=no,directories=no');
}

function CheckLocation()
{
	var eSrc= window.event.srcElement;
	var i = eSrc.options.selectedIndex;
	
	if (eSrc.value=="-1")
	{
		alert(" Please select a valid location ");		

		eSrc.options(i).selected=false;
		return false;
	}
	return true;
}		
