function CalculateCom(vForm, iFlag, sFlag, iFabric) {
var iYards;
var iPlain = 1;
var iFteen = 1.20;
var iToSix = 1.25;
var iThSix = 1.30;

if(iFlag == "48"){
	var iPlain = 1.15;
	var iFteen = 1.20;
	var iToSix = 1.20;
	var iThSix = 1.30;
}
switch(sFlag){
	case "-1": //Don't show anything
		vForm.text1.value = "";
		break;
	case "Plain":
		iYards = Math.round((iFabric * iPlain)*100)/100;
		vForm.text1.value = iYards;
		break;
	case "14":
		iYards = Math.round((iFabric * iFteen)*100)/100;
		vForm.text1.value = iYards;
		break;
	case "26":
		iYards = Math.round((iFabric * iToSix)*100)/100;
		vForm.text1.value = iYards;
		break;
	case "36":
		iYards = Math.round((iFabric * iThSix)*100)/100;
		vForm.text1.value = iYards;
		break;
	}		
}

function CalculatePrice(vForm, sFlag, iFlag) {
	var aPricing = iFlag.split('~'); // pricing
	var dPrice = 0.00;
	var iIndex = -1;
	var retVal = 'N/A';
	switch(sFlag){ //Finish Level
		case "-1": //Don't show anything
			iIndex = -1;
			break;
		case "A": //level a
			iIndex = 0;
			break;
		case "P": // premium
			iIndex = 1;
			break;
		case "U": // ultra premium
			iIndex = 2;
			break;
	}
	if (iIndex >= 0)
	{
		if (!isNaN(aPricing[iIndex]))
			dPrice = (aPricing[iIndex] * 100)/100;
		if (dPrice > 0)
			retVal = '$' + dPrice;
	}
	vForm.txtPrice.value = retVal;
}

function LaunchThumb(sImageID, sClr, sName, sDesc, sCorR, sLevel) {	
	newWindow=window.open('Finish.aspx?id=' + sImageID + '&num=' + sClr + '&cr=' + sCorR + '&name=' + sName + '&desc=' + sDesc + '&level=' + sLevel + '','wFinish',"'top=0,left=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=450'");
	newWindow.focus();
}

function LaunchPrint(sMessage) {	
	newWindow=window.open('Print.aspx?' + sMessage + '','wPrint',"'top=0,left=0,toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=570,height=800'");
	newWindow.focus();
}

function LaunchEmail(sMessage) {	
	newWindow=window.open('EmailImage.aspx?' + sMessage + '','wEmail',"'top=0,left=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=600,height=250'");
	newWindow.focus();
}

function LaunchImages(sImageID, sProd, sOth, bFlg, sCorR) {	
	newWindow=window.open('Pop.aspx?id=' + sImageID + '&lrF=' + bFlg + '&prod=' + sProd + '&other=' + sOth + '&cr=' + sCorR + '','oImages',"'top=0,left=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550'");
	newWindow.focus();
}

