
// Sets path for Flash POV SWF files
var flashRoot = "http://graphics.samsclub.com/images/";


// Use to Embed Flash Movie in IE-ActiveX Workaround
function CreateFlashControl(DivID, tagData)
{
	var d = document.getElementById(DivID);
	d.innerHTML = tagData;
}


// Use to popup links within set dimensions
function windowPop(url,name,width,height,location,resize,scrollbars)
{
	properties = 'width=' + width + ',height=' + height + ',location=' + location + ',resizable=' + resize + ',scrollbars=' + scrollbars;
	window.open(url,name,properties);
}


//Sets Images default path to samsclub.com
function ShowImage(ImageName, altText)
{
	// Local - uncomment this when testing pages on sites that are external to Sams Club
	//var root = "images/";
	
	// Remote - comment the entries below when testing pages on sites that are external to Sams Club
	var root = "http://graphics.samsclub.com/images/";
	var path = root + ImageName;
	document.write("<img alt=\"" + altText + "\" src=\"" + path + "\" />");
}


// Sets up path to PDF folder on the live site
function ShowPDF(pdfName, pdfTitle)
{
	var root = "http://www.samsclubmemberservices.com/Media/PDFs/";	
	var path = root + pdfName;
	document.write("<a href=\"" + path + "\"" + "target=\"" + "_blank\">"+ pdfTitle + "</a>");
}