function initPage()
{
   //$('.rounded').corners();
}  


function fullscreen(loc, widthParam) {
	var width = 1200;
	if (widthParam != undefined)
	{width = widthParam;}
	var isWin=(navigator.appVersion.indexOf("Win")!=-1)? true : false;
	var isIE=(navigator.appVersion.indexOf("MSIE")!=-1)? true : false;
	var notIE7 = (navigator.appVersion.indexOf("MSIE 7.0")!=-1)? false : true;
        var openString = "width=" + width + ", height=1000, scrollbars=1, resizable=1";
	
	if(isWin&&isIE&&notIE7){
		var fullwindow = window.open(loc,get_random(100),openString);
		fullwindow.focus();
	}else{
// 	for non-ie browsers, specify width and height instead of using fullscreen 
		var fullwindow = window.open(loc,get_random(100),openString);
		fullwindow.focus();
	}	
    fullwindow.moveTo(get_random(5) * 50, get_random(5) * 100);
}


function get_random(key)
{
    var ranNum= Math.floor(Math.random() * key);
    return ranNum;
}