﻿function plingpopup(url, id, width, height, resizable, showlocation, showstatus, showtoolbar, showscrollbars, showmenubar)
{

    window.open(
		url, 
		id, 
		"width=" + width +
		",height=" + height +
		",resizable=" + resizable +
		",location=" + showlocation +
		",status=" + showstatus +
		",toolbar=" + showtoolbar +
		",scrollbars=" + showscrollbars +
		",menubar=" + showmenubar
		);
}