function openAssetWindow(url, name, width, height) {
	var params = openAssetWindow.arguments.length >= 5 ? openAssetWindow.arguments[4] : null;
   	if(params != null) {
   		params = params + ",width=" + width + ",height=" + height;
   	} else {
   		params = "width=" + width + ",height=" + height + ",resizable=yes,scrollbars=no,status=yes";
   	}
	var assetPopup = window.open(url, name, params);
	//return assetPopup;
}
