function openWindow(url)
{
	var styleStr = 'resizable=yes';
	//var styleStr = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	
	// open a window with nothing but the titlebar
	var msgWindow = window.open(url,'veriwin', styleStr);
	
	// insert the album requested
	//msgWindow.document.location.href = url;
	
	// bring the album to the front
	msgWindow.focus();
}