1935711a43
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@1 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 0f09d39edb936ebd87ab33a41da1326a84f415e2 Former-commit-id: 38d30950aa3367e9b8718cee602e206dbc360201
15 lines
360 B
JavaScript
15 lines
360 B
JavaScript
/* exchange image inr through iobject */
|
|
function imgchange(inr, iobjekt)
|
|
{
|
|
window.document.images[inr].src = iobjekt.src;
|
|
}
|
|
|
|
/* change two frames at once */
|
|
function changetwoframes(uri1, dest1, uri2, dest2)
|
|
{
|
|
var frame1 = eval("parent." + dest1);
|
|
var frame2 = eval("parent." + dest2);
|
|
frame1.location.href = uri1;
|
|
frame2.location.href = uri2;
|
|
}
|
|
|