var settings = "";
var popWindow;
var tempURL;
// variables for article pop-ups
var popPath = new Array()
var sizesWidth = new Array()
var sizesHeight = new Array()
// search form
	popPath[1] = "../../cabinet/office/search";
	sizesWidth[1] = 650
	sizesHeight[1] = 560
// contact form
	popPath[3] = "../../charm/office/contact-form.php";
	sizesWidth[3] = 425
	sizesHeight[3] = 465
// contact form - resume subject
	popPath[31] = "../../charm/office/contact-form.php?specialsubject=resume%20request";
	sizesWidth[31] = 425
	sizesHeight[31] = 465
// guestbook window
	popPath[4] = "http://books.dreambook.com/thequeen1/regency.html";
	sizesWidth[4] = 425
	sizesHeight[4] = 465
// functions
function openOffice(popID,extraInfo) {
/*	if (popID != 0) {*/
/*		setClickOff(popID)*/
/*	}*/
	settings = "toolbar=yes,"
	settings += "location=no,"
	settings += "directories=no,"
	settings += "status=yes,"
	settings += "menubar=yes,"
	settings += "scrollbars=yes,"
	settings += "toolbar=no,"
	tempURL = popPath[popID] + extraInfo
	if (NN4) {
		settings += "resizable=yes"
		settings += ",width=" + sizesWidth[popID]
		settings += ",height=" + (sizesHeight[popID] + 40)
	} else if (IE4) {
		settings += "resizable=yes"
		settings += ",width=" + sizesWidth[popID]
		settings += ",height=" + (sizesHeight[popID])
	}
	popWindow = window.open(tempURL,'digital_kung_fu',settings)
}
