// JavaScript Document
var newwindow;
function pressrelease(url)
{
	newwindow=window.open(url,'name','height=700,width=595,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
