// JavaScript Document
/**
*	Prepare form
**/
$(document).ready(function() 
{
	initfacebook();	
});	

function openPopup(pageUrl,w,h) {
	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-(h/2);
	var winName = Math.round(9999*Math.random()) + new Date().getTime();
	var winNew = window.open(pageUrl,winName,"toolbar=0,scrollbars=1,location=0,statusbar=0,status=0,menubar=0,directories=0,titlebar=0,resizable=0,width="+w+",height="+h+",left="+left+",top="+top);

	winNew.focus();

	return !!winNew;
}
