// JavaScript Document
function change(sel,xx,href){
	document.clintimage.src = "portfolio/"+sel+".jpg";
	document.clintimage.alt = "XEL ONLINE-Web Site Client."
	textmessage(xx);
	theElmm ='<font face="Arial" size="1" color="#858896">'
	if(href)
		theElmm =theElmm +'<a href="'+href+'" target="new" onMouseOver="mover('+"'site'"+')" onMouseOut="mout('+"'site'"+')"><b>Launch Site ... </b></a>'
	else
		theElmm =theElmm +'<b>Under Construction.</b>'
	theElmm =theElmm +'</font>'
	theElm = document.getElementById('launch_site');
	theElm.innerHTML=theElmm;
	return false
}

function winopen(site){
	url = site+".html"
	img = site+"_b.jpg"
	MM_preloadImages(img)
	var X = 150;
	var Y = 7;
	var W = 500;
	var H = 430;
	var s="left="+X+",top="+Y+",width="+W+",height="+H;
	g_childWindow = window.open(url,'TheWindow',s);
	g_childWindow.focus();
	return false;
}