var browser_name = navigator.appName;

/*
Author: Michele Damico
Company: 5150 Productions
Contact: http://www.5150-productions.com
Description: new window
*/
var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
	if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
	settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=yes,directories=yes,status=yes,menubar=yes,toolbar=yes,resizable=yes";win=window.open(mypage,myname,settings);
	win.focus();
}




/*
Author: Michele Damico
Company: 5150 Productions
Contact: http://www.5150-productions.com
Description: navigation rollovers
*/
if (document.images) {

	var emb10off = new Image();
	emb10off.src = "/images/wedding1off.gif";
	var emb11off = new Image();
	emb11off.src = "/images/baby1off.gif";
	var emb12off = new Image();
	emb12off.src = "/images/stationery1off.gif";
	var emb13off = new Image();
	emb13off.src = "/images/entertaining1off.gif";	
	var emb14off = new Image();
	emb14off.src = "/images/seasonaloff.gif";	
	var emb15off = new Image();
	emb15off.src = "/images/personaloff.gif";
	var emb16off = new Image();
	emb16off.src = "/images/bonbonsoff.gif";
	var emb17off = new Image();
	emb17off.src = "/images/offcutsoff.gif";
	

	var emb10on = new Image();
	emb10on.src = "/images/wedding1on.gif";
	var emb11on = new Image();
	emb11on.src = "/images/baby1on.gif";
	var emb12on = new Image();
	emb12on.src = "/images/stationery1on.gif";
	var emb13on = new Image();
	emb13on.src = "/images/entertaining1on.gif";	
	var emb14on = new Image();
	emb14on.src = "/images/seasonalon.gif";	
	var emb15on = new Image();
	emb15on.src = "/images/personalon.gif";
	var emb16on = new Image();
	emb16on.src = "/images/bonbonson.gif";
	var emb17on = new Image();
	emb17on.src = "/images/offcutson.gif";

function img_act(imgName) {
	if (document.images) {
		document.images[imgName].src = eval(imgName + "on.src");
	}
}

function img_inact(imgName) {
	if (document.images) {
		document.images[imgName].src = eval(imgName + "off.src");
	}
}

}

/*
Author: Michele Damico
Company: 5150 Productions
Contact: http://www.5150-productions.com
Description: change sku's for attributes
*/
function changeSKU(attribute) {
	var SKU = document.FORMA.Original_Product_Code.value;
	var newSKU = SKU + '-' + attribute;
	document.FORMA.Product_Code.value = newSKU;
}

/*
Author: Michele Damico
Company: 5150 Productions
Contact: http://www.5150-productions.com
Description: for shipping
*/
function MoveVarTo(from,to,varname) {
	document.forms[to].elements[varname].value = document.forms[from].elements[varname].value;
}



/*
Author: Michele Damico
Company: 5150 Productions
Contact: http://www.5150-productions.com
Description: showhide
*/
function showDiv(layer) {
  	elem = document.getElementById(layer);
  	elem.style.display = "block"; 
}

function hideDiv(layer) {
  	elem = document.getElementById(layer);
  	elem.style.display = "none"; 
}


