if(!top.framedock || !top.framemp3player){
		
	if(document.location.href.indexOf('index.php') > 0){
		
		var url = document.location.href;
		
		if(document.location.href.indexOf('index.php?') > 0){
			url += '&';
		}else{
			url += '?';
		}
		
		url += 'withFrameset=true';
		
	}else{
		var url = document.location.href + 'index.php?withFrameset=true';
	}

	top.document.location.href = url;
	
}