// JavaScript Document
function popupSpecific(address, width, height, scrollbar, resizable) {
	var screenX = screen.width
	var screenY = screen.height
	if (resizable == undefined)
	{
		resizable = 0;
	}
	var x = (screenX - width)/2;
	var y = (screenY - height)/3;
	var random_num = (Math.round((Math.random()*9)+1));

	var popup = window.open(address,"popup"+random_num,"resizable="+resizable+" ,scrollbars="+scrollbar+",width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	popup.focus();
}

If (parent.location.href != window.location.href )
parent.location.href = window.location.href 

// --- End
//-->