﻿function showLogin(){
	document.getElementById('grey_div').style.visibility='visible';
	document.getElementById('grey_div').style.display='block';
	document.getElementById('loginEmail').focus();
}

function showConfirm(projectName, orderId){
	document.getElementById('grey_div_confirm').style.visibility='visible';
	document.getElementById('grey_div_confirm').style.display='block';
	if (orderId && orderId != '') {
		document.getElementById('aName').innerHTML=projectName;
		document.getElementById('oId').value=orderId;
	}
}

function hide(id){
	document.getElementById(id).style.visibility='hidden';
	document.getElementById(id).style.display='none';
}

function openWin(urlString) {
	window.open(urlString,'funbookFlash');
}

function redirectToOrder(orderId) {
	
//	if(window.opener)
//	{
		window.opener.location = 'http://www.funbook.eu/payment/?orderId='+orderId;
		window.opener.focus();
		window.opener.getTheFocus();
		//window.open('','_self','');
		window.close();
//	}
//	else
//	{
//		window.location = 'http://funbook.eu/payment/?orderId='+orderId;
//	}
}

function getTheFocus() {
		alert('Вашата поръчка е генерирана!');
	//	window.location = 'http://www.funbook.eu/payment/?orderId='+orderId;
		
	//alert(tabbrowser.tabContainer.childNodes[2])
	window.focus();
}

