	function colorMe(obj)
	{
		obj.style.borderTop = "2px solid Orange";
		obj.style.backgroundColor = "#F9F9FB";
	}
	function removeColor(obj)
	{
		obj.style.borderTop = "2px solid ";
		obj.style.backgroundColor = "";
	}
	
	function popupMelssWindow(url,width,height) {
		if(url.length==0)
			url = 'loading.html';
		LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-height)/2 : 0;		
		var settings = 'toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=1,resizable=1,copyhistory=no,Width='+width+',Height='+height+',top='+TopPosition+',left='+LeftPosition+'';
		win = window.open(url,'melssWindow',settings);
		if(!win)	{
			alert('A popup blocker has blocked the window.  \nPlease press Ctrl and click on the link again to open the window.');
		} else {
			win.focus();	
		}
	}
	
	function sm()
	{
		popupMelssWindow('',400,520);;
	}