/* Start here*/
	function confirm_entry(){
		input_box=confirm("Click OK or Cancel to Continue");
		if (input_box==true){
		// Output when OK is clicked
			alert ("You clicked OK");
		}else{
		// Output when Cancel is clicked
			alert ("You clicked cancel");
		}
	}

/**************************/	
	function openEdit(url){
		popupWin = window.open(url,'edit','width=430,height=540,scrollbars=yes,resizable=yes,menubar=no');
		if (window.focus) {popupWin.focus()}
	}
/**************************/	
	function openUpload(url){
		popupWin = window.open(url,'upload','width=350,height=200,scrollbars=yes,resizable=yes,menubar=no');
		if (window.focus) {popupWin.focus()}
	}	
/**************************/	
	function openImage(url){
		popupWin = window.open(url,'image','width=520,height=385,scrollbars=yes,resizable=yes,menubar=no');
		if (window.focus) {popupWin.focus()}
	}		
/**************************/
	var c=0;
	var t;
	var iChoice = 0;
	
	function timedCount(){
		c=c+1;
		t=setTimeout("timedCount()",50000);
		if (c%2 == 0){
			Get_dynamic_data_list('get_random_album_list.php', 'randImages');
		}else{
			Get_dynamic_data_list('get_singer_homegage_header_list.php', 'albumListHeader');
		}
	}
	//timedCount();
	
	

