
// fail gracefully, ie: do nothing if used incorrectly
var to = window.clientID;
if ( to ) {
  // prevent cross-site scripting attacks
  to = unescape( to.toString() );
  to = to.replace(/</g, '&lt;');
  to = to.replace(/>/g, '&gt;');
  // send our output along
}

document.body.style.margin = '0px';
document.body.style.padding = '0px';

var fr = document.createElement("IFRAME");
fr.style.margin = '0px';
fr.style.padding = '0px';
fr.style.width = '100%';
fr.style.height = '900px';
fr.style.border = '0';

fr.src = 'http://www.culturehouse.net/ch/?clientID='+to;	

document.body.appendChild(fr);

