

function deleteConfirmation(msg) {
	validity = false; 
	if (confirm('Are you sure you want to delete this ' + msg + '?')){
		validity = true;}
	return validity;
}


function openWin(url)
{
	x = window.open(url, "x", "toolbar=no,scrollbars =no,width=325,height=225" );
}

function autoSizeFrame(oFrame){

	try{
		innerDoc = (oFrame.contentDocument) ? oFrame.contentDocument : oFrame.contentWindow.document;
		objToResize = (oFrame.style) ? oFrame.style : oFrame;
		objToResize.height = innerDoc.body.scrollHeight + 100 + 'px';
		
		
	}
	catch(err){
		alert(err);
		window.status = err.message;
	}
}
	

