/*Used by Visage links in www.aptsolutions.net/visage to change frame to specific page.*/
$('#right').ready(function() {
	var theUrl = document.URL;
	if(theUrl.match('page=')) {	
		thePage = theUrl.split('=');
        if((thePage[1].match('http'))&&(thePage[1].match('..'))){}
		else{
		    var theFrame = document.getElementById('rightFrame');
		    theFrame.src = thePage[1];
        }
	}
});