
//Popup For Window with attributes
function openWin(URL,ID,WIDTH,HEIGHT,RESIZE,SCROLL) {
        var Win = window.open(URL,ID,'width='+WIDTH+',height='+HEIGHT+',resizable='+RESIZE+',scrollbars='+SCROLL+',menubar=no,toolbar=no,location=no,directories=no,status=no');
		Win.focus();
}