// Icon Color Changes
function ColorMe(WhatColor)
{
var What2ColorIndex=document.builderform.Item2ColorEdit.selectedIndex; 
var What2Color=document.builderform.Item2ColorEdit.value;
document.builderform.What2Color.value=What2Color;
document.builderform.WhatColor.value=WhatColor;
document.builderform.submit();
}

// Admin ColorMe Function
function AdminColorMe()
{
// var What2ColorIndex=document.builderform.Item2ColorEdit.selectedIndex; 
// var What2Color=document.builderform.Item2ColorEdit.value;
// document.builderform.What2Color.value=What2Color;
// document.builderform.WhatColor.value=WhatColor;
document.builderform.submit();
}

// Reset Color Palette
function ColorTab(Doit, Here){
document.builderform.ResetPalette.value=Doit;
document.builderform.Item2ColorEdit.value=Here;
document.builderform.submit();
}

// Retrieve Password
function DoIt(Doit){
document.LostPass.SendLostPass.value=Doit;
document.LostPass.submit();
}

// Change Build Action
function BuildAction(What){
document.builderform.action = What;
document.builderform.submit();
}

// Pop Up Window
function popIt(url, name, tb, sb, lo, st, mu, rs, w, h) {
	msgWindow=open(url, name, + ',toolbar=' + tb + ',scrollbars=' + sb + ',location=' + lo + ',status=' + st + ',menubar=' + mu + ',resizable=' + rs + ',width=' + w + ',height=' + h);
    if(msgWindow.opener == null) msgWindow.opener = self;
	if(window.focus) {
	msgWindow.focus();
	}
}

// Pop Under Window
function popunder(winname, winattributes, pagetitle, pagebody){
window2=window.open('', winname, winattributes)
window2.document.write('<html><head><title>');
window2.document.write(pagetitle);
window2.document.write('</title></head><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">');
window2.document.write(pagebody);
window2.document.write('</body></html>');
window2.blur()
window.focus()
}

// Sign In Action
function AcmeAction(What){
document.inform.AcmeAction.value=What;
document.inform.submit();
}
