// Popup viewer
function popup(link) {
	var width = 470;
	var height = 309;		
	bars = 'yes'; 	
	window.open(link, "WindowName", "width=" + width + ",height=" + height + ",top=0,left=0,scrollbars=" + bars + "");
}

// Popup press viewer
function pressPopup(link) {
	var width = 540;
	var height = 400;		
	bars = 'yes'; 	
	window.open(link, "PressWindow", "width=" + width + ",height=" + height + ",top=0,left=0,scrollbars=" + bars + "");
}

// Popup press viewer
function pressPopupBig(link) {
	var width = 800;
	var height = 600;		
	bars = 'yes'; 	
	window.open(link, "PressWindow", "width=" + width + ",height=" + height + ",top=0,left=0,scrollbars=" + bars + "");
}