<!--
var objArray = new Array("CompleteCollection", "Bridal", "EveningElegance", "NewHotAndEssential", "PlusSize", "TeensAndParties", "Theme");

function detectBrowser()
{ 
    this.ver=navigator.appVersion;
    this.dom=document.getElementById?1:0;
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; 
    this.ie4=(document.all && !this.dom)?1:0; 
    this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
    this.ns4=(document.layers && !this.dom)?1:0;
    this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5);
    return this;
}

function getAncorPosition(ancName)
{
	for (var i = 0; i < document.anchors.length; i++)
	{
		if (document.anchors[i].name == ancName)
		{
			this.x = ancPosX(document.anchors[i]);
			this.y = ancPosY(document.anchors[i]);
			return this;
		}
	}
}

function ancPosX(anchorPtr)
{
	if(bw.ns4)
	{
		return anchorPtr.x;
	} else if (bw.dom || bw.ie4)
	{
		var pos = anchorPtr.offsetLeft;
		while (anchorPtr.offsetParent != null)
		{
			anchorPtr = anchorPtr.offsetParent;
			pos += anchorPtr.offsetLeft;
		}
		return pos;
	}
}

function ancPosY(anchorPtr)
{
	if(bw.ns4)
	{
		return anchorPtr.y;
	} else if (bw.dom || bw.ie4)
	{
		var pos = anchorPtr.offsetTop;
		while (anchorPtr.offsetParent != null)
		{
			anchorPtr = anchorPtr.offsetParent;
			pos += anchorPtr.offsetTop;
		}
		return pos;
	}
}

var bw = new detectBrowser();

function showMenu(id) {
	var anc = getAncorPosition("anc"+id);
	cFrame.ShowMenu(objArray[id], anc.x+12, anc.y+14, false);
}
//-->