// Function Definitions--------
function thinWin(myURL, myWidth, myHeight, winName) {
	if (winName=="") {
		winName = "thinWin1";
	}
	window.open(myURL, winName, "toolbar=0, location=0, directories=0, status=1, scrollbars=1, menubar=0, resizable=1, copyhistory=0, width=" + myWidth + ", height=" + myHeight);
}

// ----------------------------
