

// LMC Text Button
function LMC_goTo( url ) {
	window.location.href = url;
}

function LMC_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#6600fe';
				break;
			default:
				if ( document.getElementsByTagName ) {
					t.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#000';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function LMC_navBarClick( tableCellRef, navStyle, url ) {
	LMC_navBar( tableCellRef, 0, navStyle );
	LMC_goTo( url );
}

function setSessionID() {
 var a="";
}

var loaded_script = true;

function getCookie(NameOfCookie)
{

// First we check to see if there is a cookie stored.
// Otherwise the length of document.cookie would be zero.

if (document.cookie.length > 0) 
{ 

// Second we check to see if the cookie's name is stored in the
// "document.cookie" object for the page.

// Since more than one cookie can be set on a
// single page it is possible that our cookie
// is not present, even though the "document.cookie" object
// is not just an empty text.
// If our cookie name is not present the value -1 is stored
// in the variable called "begin".

begin = document.cookie.indexOf(NameOfCookie+"="); 
if (begin != -1) // Note: != means "is not equal to"
{ 

// Our cookie was set. 
// The value stored in the cookie is returned from the function.

begin += NameOfCookie.length+1; 
end = document.cookie.indexOf(";", begin);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(begin, end)); } 
}
return null; 

// Our cookie was not set. 
// The value "null" is returned from the function.

}


function currentdate()
{
var d = new Date()
return d.getMonth() + 1 +"/"+d.getDate()+"/"+d.getFullYear();
}

function currenttime()
{
var d = new Date()
return d.getHours()+":"+d.getMinutes()+":"+d.getSeconds();
}

function replaceChars(entry,out,add) {
// replace out 
// with add 
recvstring = "" + entry; // temporary holder

while (recvstring.indexOf(out)>-1) {
pos= recvstring.indexOf(out);
recvstring = "" + (recvstring.substring(0, pos) + add + 
recvstring.substring((pos + out.length), recvstring.length));
}
return recvstring;
}

function Is()
{
 var agt=navigator.userAgent.toLowerCase();
    this.major = parseInt(navigator.appVersion);
    this.minor = parseFloat(navigator.appVersion);
    this.nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
                && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
    this.nav2 = (this.nav && (this.major == 2));
    this.nav3 = (this.nav && (this.major == 3));
    this.nav4 = (this.nav && (this.major == 4));
    this.nav4up = (this.nav && (this.major >= 4));
    this.navonly      = (this.nav && ((agt.indexOf(";nav") != -1) ||
                          (agt.indexOf("; nav") != -1)) );
    this.nav6 = (this.nav && (this.major == 5));
    this.nav6up = (this.nav && (this.major >= 5));
    this.gecko = (agt.indexOf('gecko') != -1);
    this.ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
    this.ie3    = (this.ie && (this.major < 4));
    this.ie4    = (this.ie && (this.major == 4) && (agt.indexOf("msie 4")!=-1) );
    this.ie4up  = (this.ie  && (this.major >= 4));
    this.ie5    = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.0")!=-1) );
    this.ie5_5  = (this.ie && (this.major == 4) && (agt.indexOf("msie 5.5") !=-1));
    this.ie5up  = (this.ie  && !this.ie3 && !this.ie4);
    this.ie5_5up =(this.ie && !this.ie3 && !this.ie4 && !this.ie5);
    this.ie6    = (this.ie && (this.major == 4) && (agt.indexOf("msie 6.")!=-1) );
    this.ie6up  = (this.ie  && !this.ie3 && !this.ie4 && !this.ie5 && !this.ie5_5);
    this.aol   = (agt.indexOf("aol") != -1);
    this.aol3  = (this.aol && this.ie3);
    this.aol4  = (this.aol && this.ie4);
    this.aol5  = (agt.indexOf("aol 5") != -1);
    this.aol6  = (agt.indexOf("aol 6") != -1);
    this.opera = (agt.indexOf("opera") != -1);
    this.opera2 = (agt.indexOf("opera 2") != -1 || agt.indexOf("opera/2") != -1);
    this.opera3 = (agt.indexOf("opera 3") != -1 || agt.indexOf("opera/3") != -1);
    this.opera4 = (agt.indexOf("opera 4") != -1 || agt.indexOf("opera/4") != -1);
    this.opera5 = (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1);
    this.opera5up = (this.opera && !this.opera2 && !this.opera3 && !this.opera4);
    this.webtv = (agt.indexOf("webtv") != -1); 
    this.TVNavigator = ((agt.indexOf("navio") != -1) || (agt.indexOf("navio_aoltv") != -1)); 
    this.AOLTV = this.TVNavigator;
    this.hotjava = (agt.indexOf("hotjava") != -1);
    this.hotjava3 = (this.hotjava && (this.major == 3));
    this.hotjava3up = (this.hotjava && (this.major >= 3));
    if (this.nav2 || this.ie3) this.js = 1.0;
    else if (this.nav3) this.js = 1.1;
    else if (this.opera5up) this.js = 1.3;
    else if (this.opera) this.js = 1.1;
    else if ((this.nav4 && (this.minor <= 4.05)) || this.ie4) this.js = 1.2;
    else if ((this.nav4 && (this.minor > 4.05)) || this.ie5) this.js = 1.3;
    else if (this.hotjava3up) this.js = 1.4;
    else if (this.nav6 || this.gecko) this.js = 1.5;
    else if (this.nav6up) this.js = 1.5;
    else if (this.ie5up) this.js = 1.3
    else this.js = 0.0;
 this.win = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
 this.win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1));
 this.win16 = ((agt.indexOf("win16")!=-1) || (agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("windows 16-bit")!=-1) ); 
 this.win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) || (agt.indexOf("windows 16-bit")!=-1));
 this.win98 = ((agt.indexOf("win98")!=-1) || (agt.indexOf("windows 98")!=-1));
 this.winnt = ((agt.indexOf("winnt")!=-1) || (agt.indexOf("windows nt")!=-1));
 this.win32 = (this.win95 || this.winnt || this.win98 || ((this.major >= 4) && (navigator.platform =="Win32")) || (agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1));
 this.winme = ((agt.indexOf("win 9x 4.90")!=-1));
 this.win2k = ((agt.indexOf("windows nt 5.0")!=-1));
 this.winxp = ((agt.indexOf("windows nt 5.1")!=-1));
 this.os2 = ((agt.indexOf("os/2")!=-1) || (navigator.appVersion.indexOf("OS/2")!=-1) || (agt.indexOf("ibm-webexplorer")!=-1));
 this.mac = (agt.indexOf("mac")!=-1);
 if (this.mac && this.ie5up)this.js = 1.4;
 this.mac68k = (this.mac && ((agt.indexOf("68k")!=-1) || (agt.indexOf("68000")!=-1)));
 this.macppc = (this.mac && ((agt.indexOf("ppc")!=-1) || (agt.indexOf("powerpc")!=-1)));
 this.sun = (agt.indexOf("sunos")!=-1);
 this.sun4 = (agt.indexOf("sunos 4")!=-1);
 this.sun5 = (agt.indexOf("sunos 5")!=-1);
 this.suni86= (this.sun && (agt.indexOf("i86")!=-1));
 this.irix = (agt.indexOf("irix") !=-1); 
 this.irix5 = (agt.indexOf("irix 5") !=-1);
 this.irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1));
 this.hpux = (agt.indexOf("hp-ux")!=-1);
 this.hpux9 = (this.hpux && (agt.indexOf("09.")!=-1));
 this.hpux10= (this.hpux && (agt.indexOf("10.")!=-1));
 this.aix = (agt.indexOf("aix") !=-1); 
 this.aix1 = (agt.indexOf("aix 1") !=-1); 
 this.aix2 = (agt.indexOf("aix 2") !=-1); 
 this.aix3 = (agt.indexOf("aix 3") !=-1); 
 this.aix4 = (agt.indexOf("aix 4") !=-1); 
 this.linux = (agt.indexOf("inux")!=-1);
 this.sco = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
 this.unixware = (agt.indexOf("unix_system_v")!=-1); 
 this.mpras = (agt.indexOf("ncr")!=-1); 
 this.reliant = (agt.indexOf("reliantunix")!=-1);
 this.dec = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) || 
 (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) || 
 (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1)); 
 this.sinix = (agt.indexOf("sinix")!=-1);
 this.freebsd = (agt.indexOf("freebsd")!=-1);
 this.bsd = (agt.indexOf("bsd")!=-1);
 this.unix = ((agt.indexOf("x11")!=-1) || this.sun || this.irix || this.hpux || 
 this.sco ||this.unixware || this.mpras || this.reliant || 
 this.dec || this.sinix || this.aix || this.linux || this.bsd || this.freebsd);
 this.vms = ((agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1));
  if(this.winxp)this.os="Windows XP";
 else if(this.win2k)this.os="Windows 2000";
 else if (this.winme)this.os="Windows ME";
 else if (this.winnt)this.os="Windows NT";
 else if (this.win98)this.os="Windows 98";
 else if (this.win95)this.os="Windows 95";
 else if (this.win31)this.os="Windows 3.1";
 else if (this.win)this.os="Windows";
 else if (this.os2)this.os="OS2";
 else if (this.macppc)this.os="Mac Power PC";
 else if (this.mac68k)this.os="Mac 68";
 else if (this.mac)this.os="Mac";
 else if (this.unix)this.os="unix"; 
 else if (this.suni86)this.os="SunOS i86";
 else if (this.sun5)this.os="SunOS 5";
 else if (this.sun4)this.os="SunOS 4";
 else if (this.sun)this.os="SunOS";
 else if (this.irix6)this.os="irix 6";
 else if (this.irix5)this.os="irix 5";
 else if (this.irix)this.os="irix";
 else if (this.hpux10)this.os="hpux10";
 else if (this.hpux9)this.os="hpux9";
 else if (this.hpux)this.os="hpux";
 else if (this.aix4)this.os="aix 4";
 else if (this.aix3)this.os="aix 3";
 else if (this.aix2)this.os="aix 2";
 else if (this.aix1)this.os="aix 1";
 else if (this.aix)this.os="aix";
 else if (this.linux)this.os="linux"; 
 else if (this.sco)this.os="sco"; 
 else if (this.unixware)this.os="unix system"; 
 else if (this.mpras)this.os="mpras"; 
 else if (this.reliant)this.os="reliantunix";
 else if (this.dec)this.os="dec";
 else if (this.sinix)this.os="sinix"; 
 else if (this.freebsd)this.os="freebsd"; 
 else if (this.bsd)this.os="bsd"; 
 else if (this.vms)this.os="vms"; 
 else this.os="";
}


function getbrowser()
{

var d, dom, nu='', brow='', ie, ie4, ie5, ie5x, ie6, ie7;
var ns4, moz, moz_rv_sub, release_date='', moz_brow, moz_brow_nu='', moz_brow_nu_sub='', rv_full=''; 
var mac, win, old, lin, ie5mac, ie5xwin, konq, saf, op, op4, op5, op6, op7,op8;
var currbrowser = '';

d=document;
n=navigator;
nav=n.appVersion;
nan=n.appName;
nua=n.userAgent;
old=(nav.substring(0,1)<4);
mac=(nav.indexOf('Mac')!=-1);
win=( ( (nav.indexOf('Win')!=-1) || (nav.indexOf('NT')!=-1) ) && !mac)?true:false;
lin=(nua.indexOf('Linux')!=-1);
// begin primary dom/ns4 test
// this is the most important test on the page
if ( !document.layers )
{
	dom = ( d.getElementById ) ? d.getElementById : false;
}
else { 
	dom = false; 
	ns4 = true;// only netscape 4 supports document layers
}
// end main dom/ns4 test

op=(nua.indexOf('Opera')!=-1);
saf=(nua.indexOf('Safari')!=-1);
konq=(!saf && (nua.indexOf('Konqueror')!=-1) ) ? true : false;
moz=( (!saf && !konq ) && ( nua.indexOf('Gecko')!=-1 ) ) ? true : false;
ie=((nua.indexOf('MSIE')!=-1)&&!op);
if (op)
{
	str_pos=nua.indexOf('Opera');
	nu=nua.substr((str_pos+6),4);
	brow = 'Opera';
}
else if (saf)
{
	str_pos=nua.indexOf('Safari');
	nu=nua.substr((str_pos+7),5);
	brow = 'Safari';
}
else if (konq)
{
	str_pos=nua.indexOf('Konqueror');
	nu=nua.substr((str_pos+10),3);
	brow = 'Konqueror';
}
// this part is complicated a bit, don't mess with it unless you understand regular expressions
// note, for most comparisons that are practical, compare the 3 digit rv nubmer, that is the output
// placed into 'nu'.
else if (moz)
{
	// regular expression pattern that will be used to extract main version/rv numbers
	pattern = /[(); \n]/;
	// moz type array, add to this if you need to
	moz_types = new Array( 'Firebird', 'Phoenix', 'Firefox', 'Galeon', 'K-Meleon', 'Camino', 'Epiphany', 
		'Netscape6', 'Netscape', 'MultiZilla', 'Gecko Debian', 'rv' );
	rv_pos = nua.indexOf( 'rv' );// find 'rv' position in nua string
	rv_full = nua.substr( rv_pos + 3, 6 );// cut out maximum size it can be, eg: 1.8a2, 1.0.0 etc
	// search for occurance of any of characters in pattern, if found get position of that character
	rv_slice = ( rv_full.search( pattern ) != -1 ) ? rv_full.search( pattern ) : '';
	//check to make sure there was a result, if not do  nothing
	// otherwise slice out the part that you want if there is a slice position
	( rv_slice ) ? rv_full = rv_full.substr( 0, rv_slice ) : '';
	// this is the working id number, 3 digits, you'd use this for 
	// number comparison, like if nu >= 1.3 do something
	nu = rv_full.substr( 0, 3 );
	for (i=0; i < moz_types.length; i++)
	{
		if ( nua.indexOf( moz_types[i]) !=-1 )
		{
			moz_brow = moz_types[i];
			break;
		}
	}
	if ( moz_brow )// if it was found in the array
	{
		str_pos=nua.indexOf(moz_brow);// extract string position
		moz_brow_nu = nua.substr( (str_pos + moz_brow.length + 1 ) ,3);// slice out working number, 3 digit
		// if you got it, use it, else use nu
		moz_brow_nu = ( isNaN( moz_brow_nu ) ) ? moz_brow_nu = nu: moz_brow_nu;
		moz_brow_nu_sub = nua.substr( (str_pos + moz_brow.length + 1 ), 8);
		// this makes sure that it's only the id number
		sub_nu_slice = ( moz_brow_nu_sub.search( pattern ) != -1 ) ? moz_brow_nu_sub.search( pattern ) : '';
		//check to make sure there was a result, if not do  nothing
		( sub_nu_slice ) ? moz_brow_nu_sub = moz_brow_nu_sub.substr( 0, sub_nu_slice ) : '';
	}
	if ( moz_brow == 'Netscape6' )
	{
		moz_brow = 'Netscape';
	}
	else if ( moz_brow == 'rv' || moz_brow == '' )// default value if no other gecko name fit
	{
		moz_brow = 'Mozilla';
	} 
	if ( !moz_brow_nu )// use rv number if nothing else is available
	{
		moz_brow_nu = nu;
		moz_brow_nu_sub = nu;
	}
	if (n.productSub)
	{
		release_date = n.productSub;
	}
}
else if (ie)
{
	str_pos=nua.indexOf('MSIE');
	nu=nua.substr((str_pos+5),3);
	brow = 'Microsoft Internet Explorer';
}
// default to navigator app name
else 
{
	brow = nan;
}
op5=(op&&(nu.substring(0,1)==5));
op6=(op&&(nu.substring(0,1)==6));
op7=(op&&(nu.substring(0,1)==7));
op8=(op&&(nu.substring(0,1)==8));
ie4=(ie&&!dom);
ie5=(ie&&(nu.substring(0,1)==5));
ie6=(ie&&(nu.substring(0,1)==6));
ie7=(ie&&(nu.substring(0,1)==7));
// default to get number from navigator app version.
if(!nu) 
{
	nu = nav.substring(0,1);
}
/*ie5x tests only for functionality. dom or ie5x would be default settings. 
Opera will register true in this test if set to identify as IE 5*/
ie5x=(d.all&&dom);
ie5mac=(mac&&ie5);
ie5xwin=(win&&ie5x);


if(brow != "")
{
	currbrowser = brow;
	if(ie)
	{
		if (ie7) 			currbrowser = brow+" 7.x";
		else if (ie6) 		currbrowser = brow+" 6.x";
		else if (ie5) 		currbrowser = brow+" 5.0";
		else if (ie5x) 		currbrowser = brow+" 5.x";
		else if (ie5mac) 	currbrowser = brow+" 5.x mac";
		else if (ie5xwin) 	currbrowser = brow+" 5.x win";
		else if (ie4) 		currbrowser = brow+" 4.x";
	}
	else if(op)
	{
		if (op8)		currbrowser = brow+" 8.x";
		else if (op7)		currbrowser = brow+" 7.x";
		else if (op6) 		currbrowser = brow+" 6.x";
		else if (op5) 		currbrowser = brow+" 5.0";
		else if (op4) 		currbrowser = brow+" 4.x";
	}
	
}
else if(moz_brow != "")
{
currbrowser = moz_brow +" nu: "+ moz_brow_nu +" sub: "+ moz_brow_nu_sub +" rv_full: "+ rv_full;
}
return currbrowser;
}
var url;
var req;

function loadXMLDoc() 
{
var doc = document;
var nav = navigator;
var currdate			=	currentdate();
var currtime			=	currenttime();
var entrypage			=	doc.URL;
var CurrentPageURL		=	doc.URL;
var refferer			=	doc.referrer;
var dtstamp				=   currdate+currtime;	
var browser				=	getbrowser();
var CookieEnabled		=	nav.cookieEnabled;
var JavaEnabled			=	nav.javaEnabled();
var screenwidth			=	screen.width;
var screenheight		=	screen.height;
var screencolorDepth	=	screen.colorDepth;
var p_events			=	s.events;
var p_products			=	s.products;
var p_campaign			=	s.campaign;
var is					= new Is();
var OperatingSystem		= is.os;
var JsVersion			= is.js;
var hprotocol			=	"";
var VCart_ID			= "";

if (s.pageName !="" ) entrypage = s.pageName;

entrypage = unescape(entrypage);
entrypage = replaceChars(entrypage,"&","");
entrypage = replaceChars(entrypage,",","");

refferer = unescape(refferer);
refferer = replaceChars(refferer,"&","{");
refferer = replaceChars(refferer,",","");

CurrentPageURL = unescape(CurrentPageURL);
CurrentPageURL = replaceChars(CurrentPageURL,"&","{");
CurrentPageURL = replaceChars(CurrentPageURL,",","");

browser = unescape(browser);
browser = replaceChars(browser,"&","");
browser = replaceChars(browser,",","");

p_events = replaceChars(p_events,",","|");
p_events = replaceChars(p_events,";","!");

p_products = replaceChars(p_products,",","|");
p_products = replaceChars(p_products,";","!");
p_products = replaceChars(p_products,"&"," ");

p_campaign = unescape(p_campaign);
p_campaign = replaceChars(p_campaign,"&","");
p_campaign = replaceChars(p_campaign,",","");

if(getCookie('Cart_ID'))
 VCart_ID = getCookie('Cart_ID');


if(CurrentPageURL.substring(0,8) == "https://")
	hprotocol = "https://";
else
	hprotocol = "http://";


url =hprotocol+'64.210.77.115'
url =	url+'/scripts/mgrqispi.dll?APPNAME=WebLmc&PRGNAME=WST&ARGUMENTS=-AVB'+
		',-A'+p_events+',-A'+p_products+',-A'+p_campaign+',-A'+currdate+',-A'+currtime+
		',-A'+',-A'+',-A'+',-A'+',-A'+',-A'+',-N1'+',-A'+JavaEnabled+',-A'+OperatingSystem+',-A'+',-A'+
		',-A'+',-A'+CurrentPageURL+',-A'+refferer+',-A'+entrypage+',-A'+browser+
		',-N'+CookieEnabled+',-A'+',-A'+screenheight+',-A'+screenwidth+',-A'+screencolorDepth+',-A'+JsVersion+
		',-A'+VCart_ID

//document.write('<img name="myimage"  height="0"   src="'+hprotocol+'64.210.77.115/scripts/myimage.jpg"  width="0">');

//document.images["myimage"].src =url;

		
}

function sendtourl(url)
{
var requrl;
if (window.XMLHttpRequest) {
			requrl =  new XMLHttpRequest();
			requrl.open("HEAD", url,true);
			requrl.onreadystatechange=function() {
				  if (requrl.readyState==4) {
					   if (requrl.status==200) window.location = url;
					    else if (requrl.status==404) alert('URL Does Not Exists')
					     else alert("Status is "+requrl.status)
										  }
 }
requrl.send(null);
 }
else if (window.ActiveXObject) {
        requrl = new ActiveXObject("Microsoft.XMLHTTP");
        if (requrl) {
					requrl.open("HEAD", url	,true);
				requrl.onreadystatechange=function() {
				  									if (requrl.readyState==4) {
													   if (requrl.status==200) window.location = url;
													    else if (requrl.status==404) alert('URL Does Not Exists')
													     else alert("Status is "+requrl.status)
			  																}
 													}
					requrl.send();
		        }
    	}
}


/* Oversize */

var http_request = false;

function makeRequest(url) {

    var br;	
    http_request = false;
	
	br=0;

    if (window.XMLHttpRequest) { // Mozilla, Safari,...
	http_request = new XMLHttpRequest();
	if (http_request.overrideMimeType) {
	    http_request.overrideMimeType('text/xml');
		br=1;
	}
    } else if (window.ActiveXObject) { // IE
	br=0;
	try {
	    http_request = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
	    try {
	    http_request = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch (e) {}
	}
    }

    if (!http_request) {
	alert('Giving up :( Cannot create an XMLHTTP instance');
	return false;
    }

   if(br==0) {
		http_request.onreadystatechange = alertContents;
		http_request.open('GET', url, true);
		http_request.send(null);
             }
	else
	     {
		http_request.open('GET', url, false);
		http_request.send(null);
		alertContents();
	     }

}

function alertContents() {

    if (http_request.readyState == 4) {
	if (http_request.status == 200) {
	    var xmldoc    = http_request.responseXML;
	    var root   = xmldoc.getElementsByTagName('root').item(0);
	    var node   = root.childNodes;
	    var Msg    = node.item(0).firstChild.data;
	    var Part   = node.item(1).firstChild.data;
	    var Charge = node.item(2).firstChild.data;
    if(Msg=='Yes')
    {
    alert(Part+' is an Oversized Part.\n\n  There will be a $'+Charge+
	  'charge per oversized part added to your order.');
	
	
    }
		
	} else {
	    alert('There was a problem with the request.');
	}
    }

}

