function openWindow(url,height,width){
	if (height == ''){
		height = '200';
	}
	
	if (width == ''){
		width = '200';
	}
	
	window.open(url,'','height=' + height + ',width=' + width + ',menubar=no,resizable=yes,toolbar=no,scrollbars=yes');
}

function openWindowScroll(url,height,width){
	if (height == ''){
		height = '200';
	}
	
	if (width == ''){
		width = '200';
	}
	
	window.open(url,'','height=' + height + ',width=' + width + ',menubar=no,resizable=yes,toolbar=no,scrollbars=yes');
}

function Windowclose() {
	window.close()
	self.close()
	close()
}

function openPdf(key)
{
	var url = 'pdfviewer.aspx?ID=' + key;
	openWindow(url,300,300);
}
	