function openWindow(url) {
	new_window = window.open(url,'promo','top=100,left=250,resizable=yes,width=300,height=500,scrollbars=yes,menubar=no');
	setTimeout("new_window.focus()",500);
}

