function popWin(url, width, height) {
var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no' );
} 

function popWin1(url, width, height) {
var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no' );
} 
function popWin2(url, width, height) {
var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
} 

function confirm_del() {
	input_box = confirm("Czy chcesz skasować ten rekord?");	
	if (input_box == true)	
		return true;
	else	
		return false; 	
} 

function confirm_reset() {
	input_box = confirm("Czy chcesz wyzerować licznik?");	
	if (input_box == true)	
		return true;
	else	
		return false; 	
} 

function confirm_save_contact() {
	input_box = confirm("Czy chcesz zapisać ten kontakt?");	
	if (input_box == true)	
		return true;
	else	
		return false; 	
} 

function getURL_list() {
	d = document.frmStruct;
	var source = d.links_struct.value;
	//var cc = longstring.split("#");
	//alert(cc);
	var link_s = d.link_s;
	link_s.value = source;
	//index.php?view=list&struct='+source;
	return true;
} 
