
function getFramingOptionIndex() {
// figure out which select list has Framing option...
	for ( var i = 0; i < top.framePic.document.CATALOGFORM.elements.length; i++ ) {
		if ( (top.framePic.document.CATALOGFORM.elements[i].type.substring(0,6) == "select")  && (top.framePic.document.CATALOGFORM.elements[i].options[0].text == "Unframed") )
			return i;
	};
}
