// JavaScript Document
function showManageMedia(){
		var nwidth=800;		
		var nheight=600;
		
		var posx = (screen.width-nwidth)/2;
		var posy = (screen.height-nheight)/2;	

		popupWin = window.open(appUrl+"/app/modules/create/mediaManager.pop.php?mediaType=showNone&callBackFunction=setMediaValues","MediaManager","status=no,resizable=no,toolbar=no,scrollbars=no,screenX="+posx+",screenY="+posy+",left="+posx+",top="+posy+",width="+nwidth+",height="+nheight);
		
		popupWin.focus();
		
		return false;
}

function setMediaValues(id, name, code, url, width, height, mediaType){
	return false;
}

function submitFrm(tag){
	$('#searchAsset').val(tag);
	$('#searchOption').val('tag');
	document.forms['assetFrm'].submit();
}