/**
 *
 * Include a javascript file at runtime
 *
 **/
function include_js(js_file_name){
	$.getScript(GBL_BASE_URL+js_file_name);
}
		
/**
 * Load and run the fix png if it is ie
 **/
$(function(){
	if(is_ie6()){
		$.getScript(GBL_BASE_URL+'javascript/library/jquery/plugins/jquery.pngFix.js', function(){
			$(document).pngFix();			
		});
	}
});

//Detect ie6		
function is_ie6(){
	if($.browser.msie && $.browser.version.substr(0,1)<7 && typeof document.body.style.maxHeight === "undefined"){
	return true;
	}
	return false;
}