function open_popup1 (file,height,width) {
	yheight = height; xwidth = width; url = file;
	newWindow = eval('window.open(url,"new_window","height=' + yheight + ',width=' + xwidth + ',scrollbars=yes,menubar=yes,directories=no,location=no,status=yes,resizable=yes")')
	newWindow.focus();
}

function open_popup2 (file,height,width) {
	yheight = height; xwidth = width; url = file;
	newWindow2 = eval('window.open(url,"new_window2","height=' + yheight + ',width=' + xwidth + ',scrollbars=yes,menubar=yes,directories=no,location=no,status=yes,resizable=yes")')
	newWindow2.focus();
}

function open_popup3 (file,height,width) {
	yheight = height; xwidth = width; url = file;
	newWindow = eval('window.open(url,"new_window","height=' + yheight + ',width=' + xwidth + ',scrollbars=no,menubar=no,directories=no,location=no,status=no,resizable=no")')
	newWindow.focus();
}

function transitionFrames(new_page) { //v2.0
	location.href('redirect.shtml' + '?new_page=' + new_page);
}