

// ------------------------------------------
// SAMPLE REQUEST WINDOWS
// ------------------------------------------


// This function opens up the 'Request a Sample' window and sets it up for the correct product (or lack thereof)
function openSampleRequest(productName, swatch, swatchID) { 
    var url = "/sampleRequest.php?productSample=";
	url += productName;
	if (swatch !="none") {
		url += " (" + swatch + ")";
	}
	if (swatchID !="none") {
		url += ("&productSample_ID=" + swatchID);
	}
	popWin = window.open(url, '', 'width=400,height=375,status=0,scrollbars=yes,toolbar=no,resizable=yes');
	popWin.focus();
}





// ------------------------------------------
// PORTFOLIO WINDOWS
// ------------------------------------------

// This function opens up the 'Portfolio' window
function openPortfolio() { 
    var url = "/portfolio/index.html";
	portfolioWin = window.open(url, '', 'width=720,height=650,status=0,scrollbars=no,toolbar=no,resizable=no');
	portfolioWin.focus();
}