<!--
function OpenWindow(fname , WINheigth , WINwidth ) {
var strWinFeatures;
var selectorWindow;
	strWinFeatures = "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" +  WINwidth + ",height="  + WINheigth     ;
	selectorWindow = window.open(fname,"abc",strWinFeatures);
}


function AddPart(msg , url ) {
	if ( confirm(msg)  )  
		OpenWindow(url , 350 , 350  ) 
}

function confirmation(msg , url ) {
	if ( confirm(msg)  )  
		OpenWindow(url , 350 , 350  ) 
}



//-->
