var browser = null;
var netscape = 0;
var ie = 1;
var popupWin = null;

function empty() 
{
}

function Init()
{	if (navigator.appName.indexOf("Netscape") > -1) 
	{	browser = netscape;
	}
	else if (navigator.appName.indexOf("Microsoft") > -1)
	{	browser = ie;
	}
}

function ShowProperties(obj, name)
{	var result = "Properties for "+name+"\n";	
    for (curProperty in obj) 
	{ 	result += name+"." + curProperty +"\t";
    }
	alert(result);
}

function LoadContent(cont)
{	var divmain = document.getElementById("maincontent");
	divmain.innerHTML = '<iframe src="'+cont+'" id="mainiframe" scrolling="auto" frameborder="0" style="background-color:black"></iframe>';
}

function OpenWindow(url, wd, ht) 
{	var options = "width="+wd+",height="+ht+",resizable=yes,scrollbars=yes";
	popupWin = window.open(url, 'Photos', options);
	popupWin.document.location = url;
	popupWin.moveTo(0,20);
	popupWin.resizeTo(wd,ht);
	popupWin.focus();
}

function OpenMusicWindow(url, wd, ht) 
{	var options = "width="+wd+",height="+ht+",resizable=yes,scrollbars=yes";
	popupWin = window.open(url, 'Music', options);
	popupWin.document.location = url;
	popupWin.moveTo(0,0);
	popupWin.resizeTo(wd,ht);
	popupWin.focus();
}

function SetHomePageTimeout()
{	document.writeln('<b class="TDNORML">');
	document.writeln('This page belongs in a frame. You should be redirected to our home<br>page in 15 seconds, or <a href="http://www.requiance.com">CLICK HERE</a> if you prefer not to wait.');
	document.writeln('</b><br/><br/><br/>');
	setTimeout("LoadHomePage()", 15000);	
}

function LoadHomePage()
{	top.document.location = "http://www.requiance.com";
}