var flashObj;

//some common functions
function pageOnLoad() {
	getFlashObj();
}

function getFlashObj() {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        flashObj = window["home"];
    }
    else {
        flashObj = document["home"];
    }
}

function openUrl(url){
	window.open(url);
}

function showExternalLink(urlLink,width,height){
	var linkWindow = window.open(urlLink,"random","width="+width+",height="+height+",location=0,resize=1,scrollbars=yes,menubar=yes,fullscreen=0,resizable=yes");
	try{
        linkWindow.focus();
    }
	catch(e){}
}


function openExternalLink(urlLink){
	var linkWindow = window.open(urlLink,"random","location=1,resize=1,scrollbars=yes,menubar=yes,fullscreen=0,resizable=yes");
	try{
        linkWindow.focus();
    }
	catch(e){}
}

function downloadForm(formLink) {
	document.location = formLink;
}

