<!--
function CPUW(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	WinW = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	WinH = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win1 = window.open(Link,"CPUWindow1","height=" + h + ",width=" + w + ",left=" + WinW + ",top=" + WinH + ", scrollbars=0, copyhistory=0, titlebar=0, toolbar=0, location=0, directories=0, statusbar=0, status=0, menubar=0, menu=0");
	win1.focus();
}
function CPUW1(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	WinW = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	WinH = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open(Link,"CPUWindow2","height=" + h + ",width=" + w + ",left=" + WinW + ",top=" + WinH + ", scrollbars=1, copyhistory=0, titlebar=0, toolbar=0, location=0, directories=0, statusbar=0, status=0, menubar=0, resizable, menu=0");
	win2.focus();
}
function CPUW2(Link,w,h) {
	//gets top and left positions based on user's resolution so hint window is centered.
	WinW = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	WinH = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win3 = window.open(Link,"CPUWindow3","height=" + h + ",width=" + w + ",left=" + WinW + ",top=" + WinH + ",scrollbars=1");
	win3.focus();
}
function CPUW4(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	WinW = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	WinH = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win4 = window.open(Link,"CPUWindow4","height=" + h + ",width=" + w + ",left=" + WinW + ",top=" + WinH + ", scrollbars=1, copyhistory=0, titlebar=0, toolbar=0, location=0, directories=0, statusbar=0, status=0, menubar=0, resizable, menu=0");
	win4.focus();
}
function CPUW5(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	WinW = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	WinH = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win5 = window.open(Link,"CPUWindow5","height=" + h + ",width=" + w + ",left=" + WinW + ",top=" + WinH + ", scrollbars=1, copyhistory=0, titlebar=0, toolbar=0, location=0, directories=0, statusbar=0, status=0, menubar=0, resizable, menu=0");
	win5.focus();
}
//-->


