﻿// ================================//
// Created by: Syed Mobarak
// Created date: May 05, 2010
// Function name: inclued(jspath)
// Purpose: To load javascript file from anywhere

function include(jspath) {
    document.write('<script type="text/javascript" src="' + jspath + '"><\/script>');
}
// ================================//
// ================================//
// Created by: Syed Mobarak
// Created date: May 14, 2010
// Function name: selectOption(selValue)
// Purpose: To load javascript file from anywhere

$.fn.selectOption = function(selValue) {
    $("option[value='" + selValue + "']", this).attr("selected", "selected");
}
// ================================//

