﻿var sActiveAssetInput, sOnValueSet;
function modalDialogShow_IE(url,width,height){return window.showModalDialog(url,window,"dialogWidth:"+width+"px;dialogHeight:"+height+"px;edge:Raised;center:Yes;help:No;Resizable:Yes;Maximize:Yes");};
function modalDialogShow_Moz(url,width,height){var left=screen.availWidth/2-width/2;var top=screen.availHeight/2-height/2;activeModalWin=window.open(url,"","width="+width+"px,height="+height+",left="+left+",top="+top);window.onfocus=function(){if(activeModalWin.closed==false){activeModalWin.focus();};};};
function setAssetValue(v){var el=document.getElementById(sActiveAssetInput);if(el)el.value = v;if(sOnValueSet)sOnValueSet();}
function openAsset(p,f,s,w,h,l,o){
sActiveAssetInput=s;
sOnValueSet=o;
if(navigator.appName.indexOf('Microsoft')!=-1)setAssetValue(modalDialogShow_IE(p+"CMSEditor/AssetManager/assetmanager.asp?assets="+f+(l?"&lang="+l:""),w?w:640,h?h:465));
else modalDialogShow_Moz(p+"CMSEditor/AssetManager/assetmanager.asp?assets="+f+(l?"&lang="+l:""),w?w:640,h?h:600);};