// rtp.js
// Copyright (C)2009 WebTransformer.com - All Rights Reserved.

function rtpAdd() {
	var rtp_box = document.getElementById('RatingBox');
  rtp_box.innerHTML = '<iframe id="RatingIframe" name="RatingIframe" src="//webtransformer.com/rtp.html'+ '?r=' + escape(unescape(document.location)) + '" scrolling="auto" width="100%" height="100%">This browser does not support IFRAMEs, which are required to rate this page and site.</iframe>';
	if(document.layers){
    rtp_box.visibility = "visible";
  } else {
    rtp_box.style.visibility = "visible";
  }
}

// end
