
/************************************************************************/
/*  function launchMagDetail(string, [string], [string])                */
/*  NOTE: height and with are optional. since width more likely         */
/*        to be standard, height will be specified first                */
/************************************************************************/

function launchMagDetail(magazineCode, y, x) {
	var width  = (!x)  ? "360" : x;
	var height = (!y) ? "340" : y;

	var magWin = window.open('https://subs.timeinc.net/magazinederby/mag_pop.jhtml?mag_code='+magazineCode.toUpperCase(),'magDetail','width='+width+',height='+height);

	if (magWin) {
		magWin.focus();
		return true;
	}
	return false;
} 
//<!--CLD ignore=06-26-06-17:26 -->

