
function itsatest(){

	var allHTMLTags = new Array();

	function gettag(blank){

		var allHTMLTags=document.getElementsByTagName("*");

		for (i=0; i<allHTMLTags.length; i++) {
		if (allHTMLTags[i].className=='blank') {
			allHTMLTags[i].target ='_blank';
		}
	}
}

gettag();

}

function observeVideos() {
  $$('div.iv').each(function(el) {
		el.observe('click', onVideoContainerClicked);
	});
}


function onVideoContainerClicked(e) {
	var el = e.findElement('div');
	var path = 'rtmp://sas-Flash.OnstreamMedia.com/ondemand/FlashDMSP/undame/president/';
	
	el.removeClassName('iv').addClassName('ivplay');
	el.stopObserving('click', onVideoContainerClicked);
	var so = new SWFObject("/assets/2881/video.swf", "video_player", "320", "252", "9", "#fff");
	so.addParam("quality", "high");
	so.addParam("wmode", "transparent");
	so.addParam("allowFullScreen", "true");
	so.addVariable("pubcode", path + el.readAttribute('rel'));
	so.write(el.readAttribute('id'));
}


if (document.observe) {
	document.observe('dom:loaded', function(e) {
		observeVideos();
		itsatest();

	});
}

if (document.observe) {
    document.observe('dom:loaded', function(e) {
        if($('mailerform')) {
	    new Validation('mailerform');
            data = $('mailerform').getElements().collect(function(i){ if(i.name.match(/^data/)) return i.name.replace(/data\[/, '').replace(/\]/, ''); }).compact().uniq();
            h = document.createElement("input");
            h.name = 'ordered_input_names';
            h.type = 'hidden';
            h.value = data;
            $('mailerform').appendChild(h);
        }

    });

}




