
function mousecoords(event){
	x=event.clientX
	y=event.clientY
}

function opencalendar(sField){
	var url = "/plugins/management/popups/calendar.asp?felt="+sField;
	var props = "resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=250,height=152,left="+x+",top="+y
	window.open(url,"datovalg",props)
}

function viewevent(iEvent){
	var url = "/viewevent.asp?id="+iEvent;
	
	var width = 520;
	var height = 700;
	
	var left = 0;
	var top = 0;
	left = (screen.width-width)/2;
	top = (screen.height-height)/3.5;
	
	var props = "resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width="+width+",height="+height+",left="+left+",top="+top
	window.open(url,"datovalg",props)
}

window.onload = function(){
	var ajax = new RLdesign.Xml.GenericRemoteProvider("/plugins/management/ajax/slideshow.asp");
	ajax.OpenConnection(ajax_slideshow_datahandler, null);
}

function ajax_slideshow_datahandler(returnString){
	returnString = eval(returnString)
	myShow = new Slideshow('banner', {hu: '/userfiles/image/fade/', images: returnString});
}