﻿function LoadContent(url) {
	if (typeof(document.getElementById("ifrmContent")) != "undefined") {
		document.getElementById("ifrmContent").src = url;
	}
}

function LoadParentContent(url) {
	if (typeof(document.getElementById("ifrmContent")) != "undefined") {
		parent.document.getElementById("ifrmContent").src = url;
	}
}
function LoadShowRoom(url) {
	if (typeof(document.getElementById("ifrmShowRoom")) != "undefined") {
		document.getElementById("ifrmShowRoom").src = url;
	}
}

