var languageSelector;
function showLanguageMenu(){
	languageSelector=new cvcour.Lightbox("",document.getElementById("outerLang").innerHTML,{styleClass:"langSel"});
}
function showexecwindow(theurl,thewid,thehei,thehdng){
	var theurl;
	var thewid;
	var thehei;
	
	var thetothtm;
	thetothtm = "";
	thetothtm = thetothtm + "<DIV id=outerLang>";
	thetothtm = thetothtm + "<DIV class=langSelector id=langSelector>";
	thetothtm = thetothtm + "<DIV class=closeIcon><A onclick=closeLangSelector(); href=javascript:void(0)><IMG src='images/15x15_remove.gif' align=middle border=0 title='close'></A></DIV>";
    thetothtm = thetothtm + "<DIV id=langHeader>";
    thetothtm = thetothtm + "<DIV>" + thehdng + "</DIV>";
    thetothtm = thetothtm + "</DIV>";
    thetothtm = thetothtm + "<DIV class=mapArea>";
    thetothtm = thetothtm + "<IFRAME id=thsefrmae name=thsefrmae src=" + theurl + " frameBorder=0 width=" + thewid + " height=" + thehei + " style=border:solid 1px #D1E0EF;></IFRAME>";
    thetothtm = thetothtm + "</DIV>";
    thetothtm = thetothtm + "<DIV id=langFooter>";
	thetothtm = thetothtm + "<DIV><BUTTON id=dialog-accept onclick=closeLangSelector();>Close</BUTTON></DIV>";
    thetothtm = thetothtm + "</DIV>";
	thetothtm = thetothtm + "</DIV>";
	thetothtm = thetothtm + "</DIV>";
	languageSelector=new cvcour.Lightbox("",thetothtm,{styleClass:"langSel"});

	
}

function closeLangSelector(){
	languageSelector.close();
}









