// JavaScript Document

/*start for popup*/
function showHideBlogCommentBoxppp(id,w,h){
//alert(id);
obj=document.getElementById(id);
openModalDialogforwindow(obj.innerHTML,w,h);
}
function openModalDialogforwindow(html,w,h) {
	win = new Window('modal_window', {className: "alert", title: "", zIndex:100,height:h,width:w, opacity:1, resizable: false })
	
	win.setDestroyOnClose();		    
	
	win.showCenter(true);

	win.setHTMLContent(html);
	//if(!width)
	//    width=250;
	//if(!height)
	//    height=350;
	//win.setSize(width,height);
}  
function closeAll()
{
	Windows.closeAll();
}

