﻿function toHeader(value)
{
    window.document.movie.SetVariable("headerTitle", value);
}
function toHeaderColor(value)
{
    window.document.movie.SetVariable("headerColor", value);
}
function backgroundColorChange(ddl)
{
	document.body.style.backgroundColor = ddl.value;	
	toHeaderColor(ddl.value);
	bt = document.getElementById('btSaveColorImg');
	bt.style.visibility = "visible";		
	bt.style.display = "inline";		
}
function closeAndRefreshHeader()
{
	TB_remove();
	window.document.movie.SetVariable("refreshImage", "now");
	
	var appendix="?"+(new Date()).getTime();
	imgOne = document.getElementById('ctl00_cphLeft_ProfileDetails1_imgAvatar');	
	if(imgOne)	
		imgOne.src+=appendix;		
}
function showHeader(color, text, image)
{
	text = text.replace(" - MSN inside","");
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="650" height="200" id="movie" align="middle">');
	document.write('	<param name="allowScriptAccess" value="sameDomain" />');
	document.write('	<param name="movie" value="header.swf?profileColor=' +  color  + '&nickName=' + text + '&userId='+ image + '" />');
	document.write('	<param name="quality" value="best" />');
	document.write('	<param name="bgcolor" value="#444444" />');
	document.write('	<embed name=movie swLiveConnect=true src="header.swf?profileColor=' +  color  + '&nickName=' + text + '&userId='+ image + '" quality="high" bgcolor="#444444" width="650" height="200" name="variableChange" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}