function changeScr(i_src)
{
	try
	{		
		var browser = window.navigator.userAgent;
		var frame = document.frames["fraContent"];
		var lMSIE = browser.indexOf("MSIE ");

		if (frame)
		{
		    // If IE
		    if (lMSIE > 0)       
		        frame.location = i_src;
		    else
		        frame.window.location = i_src;
		}	
		else
			window.alert("Failed to retrieve tag [fraContent]");	
	}
	catch(e)
	{
		window.alert(e.description);
	}
}

function openWindow(url)
{
	window.open(url, "", "status=0,height=450px,width=660px,location=0,address=0");
}