﻿var ie5 = (document.all && !document.getElementById)? (true):(false);if (ie5){document.getElementById = function (e){return document.all[e];}}
var $ = document.getElementById;
function removeClass(o, str){if (!o)return;o.className = o.className.replace (str,"");}
function addClass(o,str){if (!o)return;o.className = o.className + " " + str;}

function markPage(id){
	addClass($(id),"selected");
}

function bubblerEditPLY(plyID) {
	window.location.href="edit.aspx?pid="+plyID;
	//alert(plyID);
}
function bubblerCreatePLY(movieUrl , isEmbed) {
	window.location.href="create.aspx?url="+movieUrl;
	/*if(isEmbed){
		//open("create.aspx?url="+movieUrl , "_blank")
		window.open("http://www.bubbleply.com/create.aspx?url="+movieUrl);
	}else{
		//open("create.aspx?url="+movieUrl , "_self");
		window.location.href="create.aspx?url="+movieUrl;
	}*/
}