function showPrintView(url)
{
	window.open(url, 'winPrintView', 'width=600,height=500,scrollbars=1,resizable=1');
}

function showEmailFriend(url)
{
	window.open(url, 'winEmailFriend', 'width=600,height=500,scrollbars=1,resizable=1');
}

function switchCmsAdminView(view, cmsId, divId)
{
	var rpcclient = new xmlrpc_client('xmlremote', location.hostname);
	//rpcclient.debug = true;

	rpcclient.addParam(view);
	rpcclient.addParam(cmsId);
	rpcclient.addParam(divId);
	rpcclient.call('cms.getAdminViewContent', updateCmsView);
}
	
function updateCmsView(ret)
{
	if(typeof ret['error'] != 'undefined')
	{
		alert(ret['error']);
	}
	else
	{
		var div = document.getElementById(ret['divId']);
		div.innerHTML = ret['content'];
	}
}
