// JavaScript Document

function bodybg() {
	var number = Math.floor(Math.random()*6);
	element = document.getElementsByTagName('body');
	var cl = new Array();
	for(i=0;i<element.length;i++) {
		element[i].style.background = '#8ba9bc url(../img/page-bg/img'+number+'.jpg)';
	}
	//document.getElementById('bodyimg').style.background = 'url(../img/page-bg/img'+number+'.jpg)';
}



function Show_Popup(action, userid) {
	setTimeout(function() {
		$('#popup').fadeIn('slow');
		$('#popupBg').fadeTo('slow', 0.75);
		$('#window').fadeIn('slow');
	}, 1500);
}
function Close_Popup() {
	$('#popup').fadeOut('fast');
	$('#popupBg').fadeOut('fast');
	$('#window').fadeOut('fast');
}

function PopupCentrata(w,h,page) {
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(page+"","","scrollbars=1, width=" + w + ",height=" + h + ",top=" + t + ",left=" + l).focus();	 
}

