var previewWnd;
var tcWnd;

function previewProduct(productID) {

	previewWnd = open(
		"http://www.martincreed.com/shop/preview.php?p=" + productID,
		"previewWnd",
		"status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,height=150,width=260"
	);
	previewWnd.moveTo(50,50);

	return false;

}


function showTC() {

	tcWnd = open(
		"http://www.noshowspace.com/shop/tc.php",
		"tcWnd",
		"status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,height=450,width=780"
	);

	return false;

}
