// JavaScript Document

function showPres(url) {	
	params = 'width=800, height=600, top=0, left=0';
	params += ', toolbar=0, menubar=0, directories=0, location=0, status=0, copyhistory=0, scrollbars=1, resizable=0';

	newwin=window.open(url,'demo', params);
	if (window.focus) {newwin.focus()}
}
function showPresBig(url) {	
	params = 'width=1024, height=1000, top=0, left=0';
	params += ', toolbar=0, menubar=0, directories=0, location=0, status=0, copyhistory=0, scrollbars=1, resizable=0';

	newwin=window.open(url,'demo', params);
	if (window.focus) {newwin.focus()}
}
function showPresNTV(url) {	
	params = 'width=1000, height=750, top=0, left=0';
	params += ', toolbar=0, menubar=0, directories=0, location=0, status=0, copyhistory=0, scrollbars=1, resizable=1';

	newwin=window.open(url,'demo', params);
	if (window.focus) {newwin.focus()}
}
