<!-- Begin

function blockError(){return true;}
window.onerror = blockError;


function resizeIframe(frameid){
var currentfr=document.getElementById(frameid)

currentfr.height = currentfr.Document.body.scrollHeight;

}
function confirmDelete(id, type){
	var msg = "";
	if(type =="parent")
	   msg = "Are You Sure You delete the message and all replies?";
	else if(type =="child")
	   msg = 'Are You Sure You delete the message?';
	if(confirm(msg)){
		window.location = "http://www.kingmenshockey.com/msgboard_delete.php?id=" + id ;
	}
	
}

function confirmDelete_attachment(id,filename){
	if(confirm('Are You Sure You delete the attachment?')){
		window.location = "http://www.kingmenshockey.com/msgboard_delete_attachment.php?id=" + id+"&filename=" + filename;
	}
	
}

