function iFrameExchange(x,width,height) {
	c = document.getElementById('iFrame1');
	c.src = x;
	c.height = height;
	c.width = width;
}

function newWindow_pc12ng(url,name) {
	var newwindow = window.open(url,name,'toolbar=no,directories=no,location=no,status=yes,menubar=no,resizable=no,scrollbars=no,left=100,top=100,width=955,height=515');
	if (window.focus) {
		newwindow.focus();
	}
}

function newWindow_pdf(url,name) {
	var newwindow = window.open(url,name,'toolbar=no,directories=no,location=no,status=yes,menubar=no,resizable=no,scrollbars=no,left=100,top=100,width=600,height=750');
	if (window.focus) {
		newwindow.focus();
	}
}

function newWindow(url,name) {
	var newwindow = window.open(url,name,'left=100,top=100');
	if (window.focus) {
		newwindow.focus();
	}
}