﻿function PrintJob(adId)
{
    var windowOptions = "width=800,height=600,top=100,left=100,resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no";
    var windowUrl = "../print.aspx?adid=" + adId;
    var stfWindow = window.open(windowUrl,"SendToAFriend", windowOptions);
    return false;
}

function ClearJobSearch(txtSearchId, drpRegionId, drpCountryId, drpCategoryId, drpLanguageId,
    drpCompanyTypeId, drpAvailLoadId, drpAvailTermId, calAddedId)
{
    document.getElementById(txtSearchId).value = '';
    document.getElementById(drpRegionId).selectedIndex = 0;
    document.getElementById(drpCountryId).selectedIndex = 0;
    document.getElementById(drpCategoryId).selectedIndex = 0;
    document.getElementById(drpLanguageId).selectedIndex = 0;
    document.getElementById(drpCompanyTypeId).selectedIndex = 0;
    document.getElementById(drpAvailLoadId).selectedIndex = 0;
    document.getElementById(drpAvailTermId).selectedIndex = 0;
    document.getElementById(calAddedId).value = '';
    return false;
}

function ClearExpiredSearch(txtSearchId, drpRegionId, drpCountryId, drpCategoryId, drpLanguageId)
{
    document.getElementById(txtSearchId).value = '';
    document.getElementById(drpRegionId).selectedIndex = 0;
    document.getElementById(drpCountryId).selectedIndex = 0;
    document.getElementById(drpCategoryId).selectedIndex = 0;
    document.getElementById(drpLanguageId).selectedIndex = 0;
    return false;
}