<!-- 
function POPUP1() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (250 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (350 + 10); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("http://www.premierbride.com/pb_privacypolicy.html","clipconsole","status=no,width=518,height=560,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
	win2.focus();
}
function POPUP2() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (250 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (350 + 10); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("http://www.premierbride.com/pb_termsofuse.html","clipconsole","status=no,width=518,height=560,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
	win2.focus();
}
function POPUP3() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (250 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (350 + 10); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("http://www.premierbride.com/pb_aboutus.html","clipconsole","status=no,width=518,height=560,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
	win2.focus();
}
function POPUP4() {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (250 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (450 + 10); //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open("../sendinfo.php?subject=Requesting Advertising Information","clipconsole","status=no,width=518,height=420,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
	win2.focus();
}
//-->