// JavaScript Document
// Script used for popup window sizing
<!-- Begin

function open_remote(url) {
	popupWin = window.open(url, 'remote', 'width=350,height=400,left=525,top=125')
}

function open_help(url) {
	popupWin = window.open(url, 'remote', 'width=350,height=275,left=525,top=125,resizable')
}

function open_help2(url) {
	popupWin = window.open(url, 'remote', 'width=350,height=450,left=525,top=125,resizable')
}

function open_window(url) {
	popupWin = window.open(url, 'external', 'scrollbars,width=640,height=480,left=10,top=10,toolbar,menubar,status,location,resizable')
}

function open_video(url) {
	popupWin = window.open(url, 'video', 'width=425,height=350,left=90,top=100,resizable')
}

//  End -->