2025-02-26 06:48:37 -05:00
|
|
|
function resizeIframe(obj) {
|
2025-03-01 07:43:59 -05:00
|
|
|
obj.style.height = "200px";
|
|
|
|
obj.style.width = "100px";
|
2025-02-26 06:48:37 -05:00
|
|
|
obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
|
|
|
|
obj.style.width = obj.contentWindow.document.documentElement.scrollWidth + 'px';
|
2025-03-01 16:02:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function getURL(path) {
|
|
|
|
if (path == undefined) {
|
|
|
|
path = "";
|
|
|
|
}
|
|
|
|
return window.location.href + path;
|
2025-02-26 06:48:37 -05:00
|
|
|
}
|