﻿function PrintResume(resumeId)
{
    var windowOptions = "width=800,height=600,top=100,left=100,resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no";
    var windowUrl = "/careers/resumes/print.aspx?rid=" + resumeId;
    var stfWindow = window.open(windowUrl,"SendToAFriend", windowOptions);
    return false;
}

function ClearResumeSearch(txtKeywordsId, drpRegionId, drpCountryId, drpCategoryId, drpStatusId, 
    drpLanguageId, drpMinExperienceId, drpMaxExperienceId, drpRelocateId, drpTravelId, calUpdateId,
    drpAvailLoadId, drpAvailTermId)
{
    document.getElementById(txtKeywordsId).value = '';
    document.getElementById(drpRegionId).selectedIndex = 0;
    document.getElementById(drpCountryId).selectedIndex = 0;
    document.getElementById(drpCategoryId).selectedIndex = 0;
    document.getElementById(drpStatusId).selectedIndex = 0;
    document.getElementById(drpLanguageId).selectedIndex = 0;
    document.getElementById(drpMinExperienceId).selectedIndex = 0;
    document.getElementById(drpMaxExperienceId).selectedIndex = (document.getElementById(drpMaxExperienceId).options.length - 1);
    document.getElementById(drpRelocateId).selectedIndex = 0;
    document.getElementById(drpTravelId).selectedIndex = 0;
    document.getElementById(calUpdateId).value = '';
    document.getElementById(drpAvailLoadId).selectedIndex = 0;
    document.getElementById(drpAvailTermId).selectedIndex = 0;
    return false;
}
