

//  --------------------------------------------------
// Pop-open Windows 
//  --------------------------------------------------


// This one is called "Press" section on Home page. Window currently opens at a custom size related to actual article jpeg.

function openPressWin(url) { 
	pressWin = window.open(url, '', 'width=575,height=630,status=0,scrollbars=yes,toolbar=no,resizable=yes');
	pressWin.focus();
}

