/* Javascript Libary */

/* function for popup windows */
var win = null;
	
	function openWin(mypage,ww,hh) 
	{
		if (ww != null && hh != null) {
			w = ww;
			h = hh;
		} else {
			w  = 150;
			h  = 200;
			}
		
		leftPos  = (screen.width) ? (screen.width-w)/2 : 0;
		topPos   = (screen.height) ? (screen.height-h)/2 : 0;
		settings = 'height=' +h+ ', width=' +w+ ', top=' +topPos+ ', left=' +leftPos+ ',scrollbars=no, no';
		
		win = window.open(mypage, '', settings);
	
	if (win.window.focus) {
		win.window.focus();
		}
	}
	
window.status = "ZicZac Bar - Ayia Napa";