﻿// JScript File
function openWindow(strURL) {
		jsWindow = window.open(strURL,"new_win","width=1000,height=1200,toolbar=yes,menubar=yes, location=yes, scrollbars=yes,resizable=yes,top=1,left=1");
		jsWindow.focus();
	}
	
function asmOpenNewWindow(strURL) {
	jsWindow = window.open(strURL,"new_win","width=675,height=525,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes");
	jsWindow.focus();
}

function ASMSpecialopenWindow(strURL) {
		jsWindow = window.open(strURL,"new_win","width=255,height=275,toolbar=no,menubar=no, location=no, scrollbars=yes,resizable=no,top=1,left=1");
		jsWindow.focus();
}


function asmOpenMovieWindow(strURL) {
    jsWindow = window.open(strURL, "new_win", "width=1050,height=800,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes,top=1,left=1");
    jsWindow.focus();
}