/*################################################################################################################
#
#   																	Copyright (C) SWAN sarl 2002-2003
#																					 CubeMedia Technology 1.0
#																							 (www.cubemedia.tv)
#
################################################################################################################      
#
#   CubeMedia Technology is a powerful flexible CMS developped by SWAN sarl. You need a user
#   licence to use this Web software.
#										
#	  In accordance with international treaties and conventions about intellectual property 
#	  rights the work is protected.
#
#	  For any other exploitation write to SWAN sarl .
#		(info@cubemedia.tv)
#
################################################################################################################      
#
#   File		   		: cmt-popup.js
#   Author			  : Stucki Gael (www.cubemedia.tv) - (www.cubemedia.tv)
#
################################################################################################################*/
	


/*
#--------------------------------------------------------------------------------------------------------------#
# POPUP  ------------------------------------------------------------------------------------------#
#--------------------------------------------------------------------------------------------------------------#
*/

var pop_uploading;


function cmt_open_Uploading(){
	
		pop_uploading = cmt_Poput('wait_dialog.php','popWaitDialog','width=400,height=200,resizable=no');

}


function cmt_close_Uploading(){
	
		pop_uploading.close();

}

	
function cmt_Poput(){
		var a = cmt_Poput.arguments;
		var scrW = window.screen.width;
		var scrH = window.screen.height;
		var leftPos = (scrW-a[2])/2;
		var topPos = 	(scrH-a[3])/2;
		
		
		
		if (a[4] != ''){
		
				var settings = a[4]+',width='+a[2]+',height='+a[3]+',left='+leftPos+',top='+topPos+'';
		
		}else{
		
				var settings = 'menubar=no,status=yes,toolbar=no,directories=no,location=no,resizable=yes,scrollbars=yes,width='+a[2]+',height='+a[3]+',left='+leftPos+',top='+topPos+'';
		
		}
		
		var cmt_P;
		
		if ((!cmt_P)|| (cmt_P.closed)){
				
				cmt_P = window.open(a[0],a[1],settings); 
				
		}
		
		
		cmt_P.focus();
		
		return cmt_P;
		
}
