function openWin(address, height, width)
{
	win = window.open(address, "hubeny", "height=" + height +", width=" + width);
	win.document.write('<html><head><title><\/title><\/head><body style="background: url('+address+') no-repeat;"><\/body><\/html>');
	if(win.open)
	{
		win.resizeTo(width, height);
		win.focus();
	}
    return;    
}
