<!--
/*load iframe from query script ©http://www.dynamicdrive.com*/
function loadframe(){
if(window.location.replace)
window.frames.main.location.replace(get('q'));
else
window.frames.main.location.href=get('q');
}
function get(key_str) {
var query = window.location.search.substr(1);
var pairs = query.split("&");
for(var i = 0; i < pairs.length; i++) {
var pair = pairs[i].split("=");
if(unescape(pair[0]) == key_str)
return unescape(pair[1]);
}
return null;
}
if (location.search&&get('q')!=null)
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", loadframe, false );
else if ( typeof window.attachEvent != "undefined" )
window.attachEvent( "onload", loadframe );
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
loadframe();
};
}
else
window.onload = loadframe;
}
//-->
<!--
function applySelectedTo(link) {
	var div = document.getElementsByTagName("div")[2]; // get the first div tag on the page
	var allLinks = div.getElementsByTagName("a"); // get all the links within that div
	for (var i=0; i<allLinks.length; i++) { // iterate through all those links
		allLinks[i].className = ""; // and assign their class names to nothing
	}
	link.className = "selected";  // finally, assign class="selected" to our chosen link
}
//-->
