<!--
// this function expects to find a file called 'popUpPillowPicture.htm' one level down
// in the folder structure.
// It constructs the url for 'popUpPillowPicture.htm' consisting of
// a "+" delimited list of textual parameters.
// 1: strPath, the path to an image file that will be displayed in the window.
//    this is appended to the root relative path 'Pillows/'
// 2: strText, text that will appear below the picture.
// 3: strOther, a second line of text that will appear below the picture.
//
// The window is then launched with size nWidth,nHeight

function OpenPictureWindowSized(nWidth,nHeight,strPath, strText, strOther) {
var myUrl
	myUrl="../popUpPillowPicture.htm?Pillows/" + strPath + "+" + escape(strText) + "+" + escape(strOther)
	newWindow = window.open(myUrl,"picWindow","resizable=1,height=" + nHeight +",width=" + nWidth +",status=1,scrollbars=1")
	newWindow.focus()
}
// -->
