/******************************************

	CopyRight 2005 Multimedia puntoicoma S.L.

*******************************************/

function showPreview(layer,img, textLabel,cssLabel,dx,dy) {
	previewLayer = document.getElementById(layer);
	var html = "<table border=0 cellspacing=0 cellpadding=4 style='background-color:#B2B8BD'>";
	html = html+"<tr><td align='middle' class='" + cssLabel + "'>" + textLabel + "</td></tr>";
	html = html+"<tr><td><img src='" + img + "'></td></tr>";
	html = html+"</table>";
	previewLayer.innerHTML = html;
	previewLayer.style.visibility = "visible";
	previewLayer.style.top = yMousePos + dy;
	previewLayer.style.left = xMousePos + dx;
}

function hidePreview(layer) {
	previewLayer = document.getElementById(layer);
	previewLayer.style.visibility = "hidden";
}

function movePreview(layer,dx,dy) { 
	previewLayer = document.getElementById(layer);
	previewLayer.style.top = yMousePos + dy;
	previewLayer.style.left = xMousePos + dx;
}


function showPreviewVideo(layer,clip,textLabel,cssLabel,dx,dy) {
	previewLayer = document.getElementById(layer);
	var html = "<table border=0 cellspacing=0 cellpadding=4 style='background-color:#B2B8BD'>";
	html = html+"<tr><td align='middle' class='" + cssLabel + "'>" + textLabel + "</td></tr>";
	html = html+"<tr><td><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='320' height='200' id='flash' align='left'>";
	html = html+"<param name='movie' value='flash/showvideo.swf' />";
	html = html+"<param name='quality' value='high' />";
	html = html+"<param name='wmode' value='transparent' />";
	html = html+"<param name='bgcolor' value='#ffffff' />";
	html = html+"<param name='flashvars' value='clip=" + clip + "'>";
	html = html+"<embed src='flash/showvideo.swf' quality='high' bgcolor='#ffffff' width='320' height='200' id='mzflash' ";
	html = html+"flashvars='clip=" + clip + "' name='head' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
	html = html+"</object></td></tr>";
	html = html+"</table>";
	previewLayer.innerHTML = html;
	previewLayer.style.visibility = "visible";
	previewLayer.style.top = yMousePos + dy;
	previewLayer.style.left = xMousePos + dx;
}

function hidePreviewVideo(layer) {
	previewLayer = document.getElementById(layer);
	previewLayer.style.visibility = "hidden";
}

function movePreviewVideo(layer,dx,dy) { 
	previewLayer = document.getElementById(layer);
	previewLayer.style.top = yMousePos + dy;
	previewLayer.style.left = xMousePos + dx;
}
