// JavaScript Document
//SCROLL PARA MAIS MULHERES DA HOME
function left(obj,comp){

	x = parseInt(obj.style.left);
	leng = comp * (-110); // 66 por causa do tamanho da div / 330 que sao 5 capas por pagina
	if ( leng < x-440) {
		obj.style.left = x-10+'px';
	}
}

function right(obj, comp){
		x = parseInt(obj.style.left);
		if (x+10 < 10){
			obj.style.left = x+10+'px';
		}
}

function down(obj,mask){
	y = parseInt(obj.style.top);
	altura_obj = parseInt(obj.clientHeight);
	altura_mask = parseInt(mask.clientHeight);
	if(y >= (altura_mask - altura_obj))
	{
		obj.style.top = y-5+'px';
	}
}
function up(obj,mask){
	y = parseInt(obj.style.top);
	if(y+5 <= 0)
	{
		obj.style.top = y+5+'px';
	}
}


//SCROLL PARA EDICOES ANTERIORES DA HOME
function leftAnterior(obj,comp){

	x = parseInt(obj.style.left);
	leng = comp * (-73); 
	if ( leng < x-210) {
		obj.style.left = x-10+'px';
	}
}

function rightAnterior(obj, comp){
		x = parseInt(obj.style.left);
		if (x+10 < 10){
			obj.style.left = x+10+'px';
		}
}

function EmbedPlayer(URL){
	
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="296" height="223"><param name="movie" value="'+URL+'"><param name="wmode" value="transparent"><param name="quality" value="high" /></param><embed src="'+URL+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" width="296" height="223"></embed></object>';

	document.getElementById('DivPlayer').innerHTML = str;
	
}
