function getJoomagEmbedCode(mUID, isMagSet, width, height, options) { if (width < 400) { width = 400; } if (height < 300) { height = 300; }  var startPageStr = "", optionParamStr = "", optsStr = "", issetParam = ""; if( isMagSet ) { issetParam = "/s"; } if( typeof options!='undefined' ) { if( typeof options.startPage && !isNaN(parseFloat(options.startPage)) && isFinite(options.startPage) ) { startPageStr = "/p"+options.startPage; } if(typeof options.theme!='undefined' && typeof options.theme.type!='undefined' && typeof options.theme.value!='undefined') { switch(options.theme.type) { case "bc": optsStr += ";solid,"+options.theme.value; break; case "theme": optionParamStr += "&theme="+options.theme.value; break; } } }  if( optsStr!="" ) { optionParamStr += "&embedInfo="+optsStr;  }  document.write('<IFRAME NAME="Joomag" id="Joomag_embed" SRC="http://magazine.joomag.com/magazine/'+mUID+startPageStr+issetParam+'?e=1'+optionParamStr+'" WIDTH="'+width+'" HEIGHT="'+height+'" HSPACE="0" VSPACE="0" frameborder="0"></IFRAME>'); }
