var lastWidget = new Object();
lastWidget.url = "";
lastWidget.iframeWidth = 800;
lastWidget.iframeHeight = 600;

function saveWidgetState(url,iframeWidth,iframeHeight){
	lastWidget.url = url;
	lastWidget.iframeWidth = iframeWidth;
	lastWidget.iframeHeight = iframeHeight;
}

function loadWidget(url,iframeWidth,iframeHeight){
	if(iframeWidth==undefined || iframeWidth==null){iframeWidth = 800;}
	if(iframeHeight==undefined || iframeWidth==null){iframeHeight = 600;}
	iframeWidth = iframeWidth+"px";
	iframeHeight = iframeHeight+"px";
	saveWidgetState(url,iframeWidth,iframeHeight);
	
	
	
	d = document.getElementById('flashcontent');
	d.style.left = "-3000px";
	$.fn.colorbox({href:url,iframe:true,open:true,overlayClose:false,width:iframeWidth,height:iframeHeight});
}

function loadLastWidget(){
	loadWidget(lastWidget.url,lastWidget.iframeWidth,lastWidget.iframeHeight);
}

function loadRating(icon, fid){
    var url = "colorbox/rate.php?icon="+escape(icon)+"&id="+escape(fid);
    $.fn.colorbox({href:url,iframe:true,open:true,overlayClose:false,width:"960px",height:"610px"});
}

function loadGetPic(pid, defaultpic){
    var url = "colorbox/getpic.php?pid="+escape(pid)+"&defaultpic="+escape(defaultpic);
    $.fn.colorbox({href:url,iframe:true,open:true,overlayClose:false,width:"895px",height:"775px"});
}