/************************************************************************* 
* 
* 	copyright: developed by Paul Denisevich 
* 	e-mail: deniamnet@gmail.com 
* 	================================================================== 
* 
* 	file: /includes/js/site.global.js 
*
**************************************************************************/ 



/*************************************************************************/ 
var screen_width = screen.width / 2; 
var screen_height = screen.height / 2; 
var window_width_bank = 820; 
var window_height_bank = 600; 
/*************************************************************************/ 
function amOpenBankWindow() 
{ 
	window.open(
	"/bank/index.html", 
	"amSuperbLeasing_Bank", 
	"width="+window_width_bank+", height="+window_height_bank+", top=" + (screen_height-window_height_bank/2) + ", left=" + (screen_width-window_width_bank/2) + ",status=0, toolbar=0, menubar=0, location=0, resizable=0, scrollbars=1"
	); 
} 
/*************************************************************************/ 

